Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 19, 2025 07:42
Show Gist options
  • Select an option

  • Save todorok1/e6fb0e88a72b4e91d9de60fbf02d7e14 to your computer and use it in GitHub Desktop.

Select an option

Save todorok1/e6fb0e88a72b4e91d9de60fbf02d7e14 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第21回 戦闘に関する状態を定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// 戦闘に関する状態を定義する列挙型です。
/// </summary>
public enum BattlePhase
{
NotInBattle,
ShowEnemy,
InputCommand,
SelectItem,
Action,
Result,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment