Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created March 12, 2025 06:19
Show Gist options
  • Save todorok1/e523b76b63eb8100f38c21c2500fc112 to your computer and use it in GitHub Desktop.
Save todorok1/e523b76b63eb8100f38c21c2500fc112 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第44回 戦闘に関する機能を管理するクラス
/// <summary>
/// 戦闘関連のスプライトを制御するクラスへの参照です。
/// </summary>
[SerializeField]
BattleSpriteController _battleSpriteController;
/// <summary>
/// キャラクターの移動を行うクラスを管理するクラスへの参照です。
/// </summary>
[SerializeField]
CharacterMoverManager _characterMoverManager;
/// <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