コード例 #1
0
ファイル: GameAction.cs プロジェクト: P7162/Simple-Adventure-
 public static void MonsterAttacks(Player player)
 {
     GameAction.Fight(player, true);
 }
コード例 #2
0
ファイル: GameAction.cs プロジェクト: P7162/Simple-Adventure-
 public static void PlayerAttacks(Player player)
 {
     GameAction.Fight(player, false);
 }