-
-
Save todorok1/4118eacd9d0eead98702c1d8eb9940de to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第53回 行動処理の全体を管理するクラス
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> | |
| /// <param name="battleManager">戦闘に関する機能を管理するクラスへの参照</param> | |
| public void InitializeProcessor(BattleManager battleManager) | |
| { | |
| _battleManager = battleManager; | |
| _enemyStatusManager = _battleManager.GetEnemyStatusManager(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment