Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 1, 2025 09:20
Show Gist options
  • Save todorok1/66827c7fd9a1c5cb87523e18f77d8748 to your computer and use it in GitHub Desktop.
Save todorok1/66827c7fd9a1c5cb87523e18f77d8748 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第6回 移動アニメーションの方向を定義するEnum
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