コード例 #1
0
ファイル: Point2D.cs プロジェクト: borndead/PoESkillTree
 public Point2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }
コード例 #2
0
ファイル: Vector2D.cs プロジェクト: borndead/PoESkillTree
 public Vector2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }