feat: add DBCStores access via Lua with getters for DBC entries (#222)

This commit is contained in:
iThorgrim
2025-01-24 21:03:52 +01:00
committed by GitHub
parent a5b2182fc2
commit d76f64f838
8 changed files with 952 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include "ElunaDBCRegistry.h"
std::vector<DBCDefinition> dbcRegistry = {
REGISTER_DBC(GemProperties, GemPropertiesEntry, sGemPropertiesStore),
REGISTER_DBC(Spell, SpellEntry, sSpellStore),
};