Mercurial > mm7
view LuaVM.h @ 2303:0a14fc2d121e
mm7_6.cpp include cleanup
author | Grumpy7 |
---|---|
date | Sun, 16 Mar 2014 21:04:00 +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;