-
-
Save todorok1/0423a51a1f4f2713665b705504d7fd8c 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 IShopOptionCallback | |
| { | |
| /// <summary> | |
| /// 選択肢が選ばれたことを通知するコールバックです。 | |
| /// </summary> | |
| /// <param name="selectedIndex">選択された選択肢のインデックス</param> | |
| void OnSelectedShopOption(int selectedIndex); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment