-
-
Save todorok1/76effd2b193d22044759c635ee8b65fb to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第119回 戦闘中に表示するメッセージの定義クラス
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
| /// <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