コード例 #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;
 }