mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-08 18:36:00 +03:00
29 lines
734 B
C++
Executable File
29 lines
734 B
C++
Executable File
// DO NOT EDIT: generated by whoa-autocode
|
|
#ifndef DB_REC_LFG_DUNGEON_EXPANSION_REC_HPP
|
|
#define DB_REC_LFG_DUNGEON_EXPANSION_REC_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class SFile;
|
|
|
|
class LfgDungeonExpansionRec {
|
|
public:
|
|
int32_t m_ID;
|
|
int32_t m_lfgID;
|
|
int32_t m_expansionLevel;
|
|
int32_t m_randomID;
|
|
int32_t m_hardLevelMin;
|
|
int32_t m_hardLevelMax;
|
|
int32_t m_targetLevelMin;
|
|
int32_t m_targetLevelMax;
|
|
|
|
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 |