Example #1
0
File: Cel.cs Project: jandie/Game
 public Cel(Enums.Object typeCel, int x, int y)
 {
     this._typeCel  = typeCel;
     _powerUpInCell = null;
     _locationX     = x;
     _locationY     = y;
 }
Example #2
0
File: Cel.cs Project: jandie/Game
 public void SetPowerUp(PowerUp powerUp)
 {
     _powerUpInCell = powerUp;
 }