Преглед на файлове

Remove props pane stuff

habeebweeb преди 5 години
родител
ревизия
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();
         }
     }
 }