Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created July 4, 2025 12:41
Show Gist options
  • Select an option

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

Select an option

Save todorok1/0423a51a1f4f2713665b705504d7fd8c to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第98回 お店用の選択肢ウィンドウのコールバック用インタフェース
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