-
-
Save todorok1/66827c7fd9a1c5cb87523e18f77d8748 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第6回 移動アニメーションの方向を定義するEnum
This file contains 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 MoveAnimationDirection | |
{ | |
Front = 0, | |
Right = 1, | |
Back = 2, | |
Left = 3, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment