2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-08-14 21:11:44 +00:00
|
|
|
|
|
|
|
#include "RetroTypes.hpp"
|
2017-08-26 04:36:25 +00:00
|
|
|
#include "CToken.hpp"
|
2016-08-14 21:11:44 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2016-12-10 02:35:20 +00:00
|
|
|
class CAnimData;
|
|
|
|
class CStateManager;
|
2016-08-14 21:11:44 +00:00
|
|
|
class CGSFidget
|
|
|
|
{
|
2017-08-26 04:36:25 +00:00
|
|
|
std::vector<CToken> x0_anims;
|
|
|
|
s32 x10_ = -1;
|
2017-08-27 03:02:18 +00:00
|
|
|
s32 x14_gunId = -1;
|
2017-09-04 02:22:46 +00:00
|
|
|
s32 x18_animSet = -1;
|
2016-12-10 02:35:20 +00:00
|
|
|
public:
|
2017-08-26 04:36:25 +00:00
|
|
|
bool Update(CAnimData& data, float dt, CStateManager& mgr);
|
2017-09-04 02:22:46 +00:00
|
|
|
s32 SetAnim(CAnimData& data, s32 type, s32 gunId, s32 animSet, CStateManager& mgr);
|
|
|
|
void LoadAnimAsync(CAnimData& data, s32 type, s32 gunId, s32 animSet, CStateManager& mgr);
|
2016-12-10 02:35:20 +00:00
|
|
|
void UnLoadAnim();
|
|
|
|
bool IsAnimLoaded() const;
|
2016-08-14 21:11:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|