예제 #1
0
파일: Snake.cs 프로젝트: Sp00nyMan/Snake
 public void move(BodyPart other)
 {
     x = other.x;
     y = other.y;
 }
예제 #2
0
파일: Snake.cs 프로젝트: Sp00nyMan/Snake
 public BodyPart(BodyPart other)
 {
     x = other.x;
     y = other.y;
 }