-
-
Save todorok1/43a4b18cd004e05cbbbc4a4720618c44 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第41回 戦闘画面のウィンドウ内のUIを制御するクラス向けのインタフェース
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> | |
| /// 戦闘画面のウィンドウ内のUIを制御するクラス向けのインタフェースです。 | |
| /// </summary> | |
| public interface IBattleUIController | |
| { | |
| /// <summary> | |
| /// UIを表示します。 | |
| /// </summary> | |
| void Show(); | |
| /// <summary> | |
| /// UIを非表示にします。 | |
| /// </summary> | |
| void Hide(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment