-
-
Save todorok1/fc4ce8dd31003c89a7a8fb9a52f021bb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第98回 お店のコールバック用インタフェース
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 IShopCallback | |
| { | |
| /// <summary> | |
| /// お店の処理が終了したことを通知するコールバックです。 | |
| /// </summary> | |
| void OnFinishedShopProcess(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment