소스 검색

Remove props pane stuff

habeebweeb 4 년 전
부모
커밋
5a9b8fee4a
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Windows/MainWindows/BackgroundWindow.cs

+ 0 - 3
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/GUI/Windows/MainWindows/BackgroundWindow.cs

@@ -9,19 +9,16 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
     {
         private EnvironmentManager environmentManager;
         private BackgroundSelectorPane backgroundSelectorPane;
-        private PropsPane propsPane;
 
         public BackgroundWindow(EnvironmentManager environmentManager)
         {
             this.environmentManager = environmentManager;
             this.backgroundSelectorPane = new BackgroundSelectorPane(this.environmentManager);
-            this.propsPane = new PropsPane(this.environmentManager);
         }
 
         public override void Draw(params GUILayoutOption[] layoutOptions)
         {
             this.backgroundSelectorPane.Draw();
-            this.propsPane.Draw();
         }
     }
 }