using System.Collections.Generic; using UnityEngine; namespace COM3D2.MeidoPhotoStudio.Plugin { public abstract class BasePane : BaseControl { protected List Controls { get; set; } protected List Panes { get; set; } protected bool updating = false; public BasePane() { Controls = new List(); Panes = new List(); } } }