DarkflameServer/dDatabase/CDClientDatabase/CDClientTables/CDPropertyTemplateTable.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
344 B
C
Raw Normal View History

#pragma once
#include "CDTable.h"
struct CDPropertyTemplate {
uint32_t id;
uint32_t mapID;
uint32_t vendorMapID;
std::string spawnName;
};
class CDPropertyTemplateTable : public CDTable<CDPropertyTemplateTable, std::vector<CDPropertyTemplate>> {
public:
void LoadValuesFromDatabase();
CDPropertyTemplate GetByMapID(uint32_t mapID);
};