mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 11:11:21 +00:00
39 lines
471 B
C++
39 lines
471 B
C++
#ifndef __URDE_CADDITIVEBODYSTATE_HPP__
|
|
#define __URDE_CADDITIVEBODYSTATE_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
#include "CharacterCommon.hpp"
|
|
#include "CBodyStateCmdMgr.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CAdditiveBodyState
|
|
{
|
|
|
|
};
|
|
|
|
class CABSAim : public CAdditiveBodyState
|
|
{
|
|
|
|
};
|
|
|
|
class CABSFlinch : public CAdditiveBodyState
|
|
{
|
|
|
|
};
|
|
|
|
class CABSIdle : public CAdditiveBodyState
|
|
{
|
|
|
|
};
|
|
|
|
class CABSReaction : public CAdditiveBodyState
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CADDITIVEBODYSTATE_HPP__
|