Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active August 16, 2025 03:24
Show Gist options
  • Select an option

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

Select an option

Save todorok1/76effd2b193d22044759c635ee8b65fb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第119回 戦闘中に表示するメッセージの定義クラス
/// <summary>
/// 逃げられない戦闘の時に表示するメッセージのフォーマットです。
/// </summary>
public static readonly string CannotRunaway = "この戦いからは逃げられない!";
/// <summary>
/// 効果がない時に表示するメッセージのフォーマットです。
/// </summary>
public static readonly string NoEffect = "しかし何も起きなかった!";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment