-
-
Save todorok1/f200f34db65f20e93e7a08210aef4029 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第41回 戦闘画面のウィンドウを制御するクラス向けのインタフェース
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
| 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