예제 #1
0
파일: Game.cs 프로젝트: bearwithcode/Victor
 public Game(Rectangle boundaries)
 {
     this.boundaries = boundaries;
     player = new Player(this, new Point(boundaries.Left + 30, boundaries.Top + 70));
 }