예제 #1
0
파일: Actor.cs 프로젝트: Prinsn/GameOfLife
 public Actor(Coordinant at)
 {
     Location = at;
 }
예제 #2
0
 public Coordinant(Coordinant from)
 {
     _x = from.X;
     _y = from.Y;
 }