Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 19, 2025 12:47
Show Gist options
  • Select an option

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

Select an option

Save todorok1/e2e867788b1bd81c6d681622bebe2d1c to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第22回 戦闘のコマンドを定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// 戦闘のコマンドを定義する列挙型です。
/// </summary>
public enum BattleCommand
{
Attack,
Magic,
Item,
Run,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment