Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 17, 2025 12:14
Show Gist options
  • Save todorok1/c4442a0d4985629aee0f45d076c82bb2 to your computer and use it in GitHub Desktop.
Save todorok1/c4442a0d4985629aee0f45d076c82bb2 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第12回 アイテムの種別を定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// アイテムの種別を定義する列挙型です。
/// </summary>
public enum ItemCategory
{
None,
ConsumableItem,
Weapon,
Armor,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment