-
-
Save todorok1/04315805bdaf8af33a81c1d8d23935be to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第98回 お店のメニューの選択肢のEnum
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 ShopCommand | |
| { | |
| None, | |
| Buy, | |
| Sell, | |
| Exit, | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment