-
-
Save todorok1/e2e867788b1bd81c6d681622bebe2d1c to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第22回 戦闘のコマンドを定義する列挙型
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 BattleCommand | |
| { | |
| Attack, | |
| Magic, | |
| Item, | |
| Run, | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment