mirror of https://github.com/AxioDL/metaforce.git
38 lines
347 B
C++
38 lines
347 B
C++
|
#ifndef __URDE_PASTYPES_HPP__
|
||
|
#define __URDE_PASTYPES_HPP__
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
namespace pas
|
||
|
{
|
||
|
enum class ELocomotionType
|
||
|
{
|
||
|
};
|
||
|
|
||
|
enum class ELocomotionAnim
|
||
|
{
|
||
|
};
|
||
|
|
||
|
enum class EAnimationState
|
||
|
{
|
||
|
};
|
||
|
|
||
|
enum class EFallState
|
||
|
{
|
||
|
};
|
||
|
}
|
||
|
|
||
|
enum class EBodyType
|
||
|
{
|
||
|
One,
|
||
|
Two = 2,
|
||
|
Three
|
||
|
};
|
||
|
enum class EBodyStateCmd
|
||
|
{
|
||
|
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_PASTYPES_HPP__
|