-
-
Save todorok1/bfa2c414915eea8e0624c53278465b31 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第14回 行動パターンのカテゴリを定義する列挙型
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 EnemyActionCategory | |
| { | |
| Attack, | |
| Guard, | |
| Magic, | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment