Exemplo n.º 1
0
Arquivo: Cel.cs Projeto: jandie/Game
 public Cel(Enums.Object typeCel, int x, int y)
 {
     this._typeCel  = typeCel;
     _powerUpInCell = null;
     _locationX     = x;
     _locationY     = y;
 }
Exemplo n.º 2
0
Arquivo: Cel.cs Projeto: jandie/Game
 public void SetPowerUp(PowerUp powerUp)
 {
     _powerUpInCell = powerUp;
 }