-
-
Save todorok1/7cb23e8647daa483ddb4941fb456e144 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第21回 ゲーム全体の状態に関する状態を定義する列挙型
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 enum GameState | |
| { | |
| None, | |
| Moving, | |
| Battle, | |
| Event, | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment