Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created July 4, 2025 12:27
Show Gist options
  • Select an option

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

Select an option

Save todorok1/04315805bdaf8af33a81c1d8d23935be to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第98回 お店のメニューの選択肢のEnum
namespace SimpleRpg
{
/// <summary>
/// お店のメニューの選択肢です。
/// </summary>
public enum ShopCommand
{
None,
Buy,
Sell,
Exit,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment