Пример #1
0
        public override bool IsEquivalentTo(ActionNodeEntityHandler other)
        {
            if (other.GetType() != GetType())
            {
                return(false);
            }

            return(Action.ActionID == ((ActionEntityHandler)other).Action.ActionID);
        }
Пример #2
0
        public override bool IsEquivalentTo(ActionNodeEntityHandler other)
        {
            if (other.GetType() != GetType())
            {
                return(false);
            }

            return(AreEquivalent(ChildHandlers, ((BranchActionEntityHandler)other).ChildHandlers));
        }
Пример #3
0
		public override bool IsEquivalentTo(ActionNodeEntityHandler other)
		{
			if (other.GetType() != GetType())
				return false;

			return Action.ActionID == ((ActionEntityHandler)other).Action.ActionID;
		}
Пример #4
0
		public override bool IsEquivalentTo(ActionNodeEntityHandler other)
		{
			if (other.GetType() != GetType())
				return false;

			return AreEquivalent(ChildHandlers, ((BranchActionEntityHandler)other).ChildHandlers);
		}