thunderbrew/src/db/rec/AttackAnimKitsRec.hpp

26 lines
626 B
C++

// DO NOT EDIT: generated by whoa-autocode
#ifndef DB_REC_ATTACK_ANIM_KITS_REC_HPP
#define DB_REC_ATTACK_ANIM_KITS_REC_HPP
#include <cstdint>
class SFile;
class AttackAnimKitsRec {
public:
int32_t m_ID;
int32_t m_itemSubclassID;
int32_t m_animTypeID;
int32_t m_animFrequency;
int32_t m_whichHand;
static const char* GetFilename();
static uint32_t GetNumColumns();
static uint32_t GetRowSize();
static bool NeedIDAssigned();
int32_t GetID();
void SetID(int32_t id);
bool Read(SFile* f, const char* stringBuffer);
};
#endif