Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 20, 2025 16:11
Show Gist options
  • Save todorok1/0602e24fc6f72d550d98a409783329fa to your computer and use it in GitHub Desktop.
Save todorok1/0602e24fc6f72d550d98a409783329fa to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第23回 アイテム使用時の効果の種別を定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// アイテム使用時の効果の種別を定義する列挙型です。
/// </summary>
public enum ItemEffectCategory
{
None,
Recovery,
Damage,
Support,
Movement,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment