예제 #1
0
        public override bool SnapshotEquals(NewEntityEvent other)
        {
            var cast = other as NewPlayerEvent;

            if (cast == null)
            {
                return(false);
            }
            return(SnapshotEquals(cast));
        }
예제 #2
0
 public virtual bool SnapshotEquals(NewEntityEvent other) {
     return Name == other.Name && EntityType == other.EntityType;
 }