-
-
Save todorok1/f7c63a7e2b1492ef1e5790609af028dc to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第62回 戦闘終了の通知を受け取るクラス向けのインタフェース
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 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