public GameObjectGroupNameScopeArgBinder(
     BindInfo bindInfo,
     GameObjectBindInfo gameObjectInfo)
     : base(bindInfo)
 {
     GameObjectInfo = gameObjectInfo;
 }
Пример #2
0
 public GameObjectGroupNameScopeArgBinder(
     BindInfo bindInfo,
     GameObjectBindInfo gameObjectInfo)
     : base(bindInfo)
 {
     GameObjectInfo = gameObjectInfo;
 }
Пример #3
0
 public override bool Equals(object other)
 {
     if (other is GameObjectBindInfo)
     {
         GameObjectBindInfo otherId = (GameObjectBindInfo)other;
         return(otherId == this);
     }
     else
     {
         return(false);
     }
 }
 public GameObjectNameGroupNameBinder(
     BindInfo bindInfo, GameObjectBindInfo gameObjectInfo)
     : base(bindInfo, gameObjectInfo)
 {
 }
Пример #5
0
 public bool Equals(GameObjectBindInfo that)
 {
     return this == that;
 }
 public GameObjectNameGroupNameBinder(
     BindInfo bindInfo, GameObjectBindInfo gameObjectInfo)
     : base(bindInfo, gameObjectInfo)
 {
 }
Пример #7
0
 public bool Equals(GameObjectBindInfo that)
 {
     return(this == that);
 }