예제 #1
0
        protected UIControl(string name, UIControlBehavior behavior)
        {
            this.name     = name;
            this.behavior = behavior;

            _configurations = new List <T>();
        }
예제 #2
0
 public HUDControl(string name, UIControlBehavior behavior) : base(name, behavior)
 {
 }
예제 #3
0
 public Screen(string name, UIControlBehavior behavior) : base(name, behavior)
 {
 }
예제 #4
0
 public Popup(string name, UIControlBehavior behavior) : base(name, behavior)
 {
 }
예제 #5
0
 protected PopupBase(string name, UIControlBehavior behavior) : base(name, behavior)
 {
 }
예제 #6
0
 protected PopupBase(string name, UIControlBehavior behavior, Type dataType) : base(name, behavior)
 {
     this.dataType = dataType;
 }