コード例 #1
0
ファイル: Byte2.cs プロジェクト: Evellex/Eldrinth
        public bool Equals(Byte2 p)
        {
            if ((object)p == null)
                return false;

            return (x == p.x) && (y == p.y);
        }
コード例 #2
0
ファイル: Byte2.cs プロジェクト: Evellex/Eldrinth
 public Byte2(Byte2 t)
 {
     x = t.x;
     y = t.y;
 }