Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created February 20, 2025 16:01
Show Gist options
  • Save todorok1/b04c5a4c5d5e1047d01f9bb5e415a91b to your computer and use it in GitHub Desktop.
Save todorok1/b04c5a4c5d5e1047d01f9bb5e415a91b to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第23回 魔法やアイテムの効果範囲を定義する列挙型
namespace SimpleRpg
{
/// <summary>
/// 魔法やアイテムの効果範囲を定義する列挙型です。
/// </summary>
public enum EffectTarget
{
Own,
FriendSolo,
FriendAll,
EnemySolo,
EnemyAll,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment