コード例 #1
0
ファイル: GameController.cs プロジェクト: Ky4epka/DickySnake
 public void Initialize()
 {
     PlayerName = "NewPlayer";
     Difficulty = GameController_Difficulty.Normal;
     Points     = 0;
 }
コード例 #2
0
ファイル: GameController.cs プロジェクト: Ky4epka/DickySnake
 public void SetDifficulty(GameController_Difficulty value)
 {
     GameParams.Difficulty = value;
     RefreshGameParams();
 }