예제 #1
0
파일: Cel.cs 프로젝트: jandie/Game
 public Cel(Enums.Object typeCel, int x, int y)
 {
     this._typeCel  = typeCel;
     _powerUpInCell = null;
     _locationX     = x;
     _locationY     = y;
 }
예제 #2
0
파일: Cel.cs 프로젝트: jandie/Game
 public void SetPowerUp(PowerUp powerUp)
 {
     _powerUpInCell = powerUp;
 }