Browse Source

Remove props pane stuff

habeebweeb 4 years ago
parent
commit
5a9b8fee4a

+ 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();
         }
     }
 }