Background2Window.cs 520 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace COM3D2.MeidoPhotoStudio.Plugin
  5. {
  6. public class Background2Window : BaseMainWindow
  7. {
  8. EnvironmentManager environmentManager;
  9. public Background2Window(EnvironmentManager environmentManager)
  10. {
  11. this.environmentManager = environmentManager;
  12. }
  13. public override void Draw(params GUILayoutOption[] layoutOptions)
  14. {
  15. GUILayout.Label("bg2");
  16. }
  17. }
  18. }