Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created March 8, 2025 15:09
Show Gist options
  • Select an option

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

Select an option

Save todorok1/f200f34db65f20e93e7a08210aef4029 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第41回 戦闘画面のウィンドウを制御するクラス向けのインタフェース
namespace SimpleRpg
{
/// <summary>
/// 戦闘画面のウィンドウを制御するクラス向けのインタフェースです。
/// </summary>
public interface IBattleWindowController
{
/// <summary>
/// コントローラの状態をセットアップします。
/// </summary>
void SetUpController(BattleManager battleManager);
/// <summary>
/// ウィンドウを表示します。
/// </summary>
void ShowWindow();
/// <summary>
/// ウィンドウを非表示にします。
/// </summary>
void HideWindow();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment