Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active March 9, 2025 06:06
Show Gist options
  • Select an option

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

Select an option

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