Exemplo n.º 1
0
 public bool Equals(UnityRLInputProto other)
 {
     if (ReferenceEquals(other, null))
     {
         return(false);
     }
     if (ReferenceEquals(other, this))
     {
         return(true);
     }
     if (!AgentActions.Equals(other.AgentActions))
     {
         return(false);
     }
     if (Command != other.Command)
     {
         return(false);
     }
     if (SideChannel != other.SideChannel)
     {
         return(false);
     }
     return(Equals(_unknownFields, other._unknownFields));
 }
Exemplo n.º 2
0
 public bool Equals(UnityRLInput other)
 {
     if (ReferenceEquals(other, null))
     {
         return(false);
     }
     if (ReferenceEquals(other, this))
     {
         return(true);
     }
     if (!AgentActions.Equals(other.AgentActions))
     {
         return(false);
     }
     if (IsTraining != other.IsTraining)
     {
         return(false);
     }
     if (Command != other.Command)
     {
         return(false);
     }
     return(Equals(_unknownFields, other._unknownFields));
 }