/BattleManager.cs Secret
Created
April 5, 2025 12:35
シンプルRPGチュートリアル第62回 戦闘に関する機能を管理するクラス
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// 戦闘の結果処理を管理するクラスへの参照です。 | |
/// </summary> | |
[SerializeField] | |
BattleResultManager _battleResultManager; | |
/// <summary> | |
/// 戦闘完了の通知を行うインタフェースです。 | |
/// </summary> | |
IPostBattle _postBattle; | |
/// <summary> | |
/// 戦闘のフェーズです。 | |
/// </summary> | |
public BattlePhase BattlePhase { get; private set; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment