Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created March 27, 2025 10:04
Show Gist options
  • Select an option

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

Select an option

Save todorok1/7fe08e1e3269c9dfd670aeb37cb436bf to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第58回 戦闘中のアクションを処理するクラス
/// <summary>
/// 戦闘中の攻撃アクションを処理するクラスへの参照です。
/// </summary>
[SerializeField]
BattleActionProcessorAttack _battleActionProcessorAttack;
/// <summary>
/// 戦闘中の魔法アクションを処理するクラスへの参照です。
/// </summary>
[SerializeField]
BattleActionProcessorMagic _battleActionProcessorMagic;
/// <summary>
/// 戦闘中のアイテムアクションを処理するクラスへの参照です。
/// </summary>
[SerializeField]
BattleActionProcessorItem _battleActionProcessorItem;
/// <summary>
/// 戦闘中の逃げるアクションを処理するクラスへの参照です。
/// </summary>
[SerializeField]
BattleActionProcessorRun _battleActionProcessorRun;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment