BasePane.cs 450 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace COM3D2.MeidoPhotoStudio.Plugin
  4. {
  5. public abstract class BasePane : BaseControl
  6. {
  7. protected List<BaseControl> Controls { get; set; }
  8. protected List<BasePane> Panes { get; set; }
  9. protected bool updating = false;
  10. public BasePane()
  11. {
  12. Controls = new List<BaseControl>();
  13. Panes = new List<BasePane>();
  14. }
  15. }
  16. }