Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created April 4, 2025 10:39
Show Gist options
  • Select an option

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

Select an option

Save todorok1/f7c63a7e2b1492ef1e5790609af028dc to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第62回 戦闘終了の通知を受け取るクラス向けのインタフェース
namespace SimpleRpg
{
/// <summary>
/// 戦闘終了の通知を受け取るクラス向けのインタフェースです。
/// </summary>
public interface IPostBattle
{
/// <summary>
/// 戦闘終了時のコールバックです。
/// </summary>
void OnFinishedBattle();
/// <summary>
/// 戦闘で負けた時のコールバックです。
/// </summary>
void OnLostBattle();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment