Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created July 4, 2025 11:58
Show Gist options
  • Select an option

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

Select an option

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