Example #1
0
        public bool Equals(IUIBehavior other)
        {
            if (other == null)
            {
                return(false);
            }

            return(setting.uiName.Equals(other.setting.uiName));
        }
Example #2
0
 public UILoader(UIBehavior behavior)
 {
     this.behavior = behavior;
 }