Mercurial > mm7
view LuaVM.h @ 2107:85e9766d6124
sub_427769_spell to sub_427769_isSpellQuickCastableOnShiftClick
author | Grumpy7 |
---|---|
date | Fri, 20 Dec 2013 01:25:52 +0100 |
parents | 62a27b2cfcc2 |
children |
line wrap: on
line source
#pragma once class LuaVM { public: inline LuaVM(): L(nullptr) {} void Initialize(); bool DoFile(const char *filename); protected: struct lua_State *L; const char *GetScriptFileLocation(const char *script_name); }; extern LuaVM *lua;