thunderbrew/src/db/rec/CharStartOutfitRec.hpp

29 lines
709 B
C++
Executable File

// DO NOT EDIT: generated by whoa-autocode
#ifndef DB_REC_CHAR_START_OUTFIT_REC_HPP
#define DB_REC_CHAR_START_OUTFIT_REC_HPP
#include <cstdint>
class SFile;
class CharStartOutfitRec {
public:
int32_t m_ID;
int8_t m_raceID;
int8_t m_classID;
int8_t m_sexID;
int8_t m_outfitID;
int32_t m_itemID[24];
int32_t m_displayItemID[24];
int32_t m_inventoryType[24];
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