metaforce/Runtime/Weapon/CGSFidget.hpp

26 lines
600 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
#include <vector>
#include "Runtime/CToken.hpp"
#include "Runtime/RetroTypes.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CAnimData;
class CStateManager;
2018-12-07 21:30:43 -08:00
class CGSFidget {
std::vector<CToken> x0_anims;
s32 x10_ = -1;
s32 x14_gunId = -1;
s32 x18_animSet = -1;
public:
2018-12-07 21:30:43 -08:00
bool Update(CAnimData& data, float dt, CStateManager& mgr);
s32 SetAnim(CAnimData& data, s32 type, s32 gunId, s32 animSet, CStateManager& mgr);
void LoadAnimAsync(CAnimData& data, s32 type, s32 gunId, s32 animSet, CStateManager& mgr);
void UnLoadAnim();
bool IsAnimLoaded() const;
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce