コード例 #1
0
ファイル: NVector.cs プロジェクト: TrutzX/9Nations
 public bool Equals(NVector other)
 {
     return(other != null && x == other.x && y == other.y && level == other.level);
 }
コード例 #2
0
ファイル: NVector.cs プロジェクト: TrutzX/9Nations
 public NVector(NVector pos)
 {
     this.x     = pos.x;
     this.y     = pos.y;
     this.level = pos.level;
 }