Viewer is ready to go, I think

This commit is contained in:
2021-01-22 17:35:23 -05:00
parent 351b923d68
commit b0440a4e12
11 changed files with 234 additions and 34 deletions

View File

@@ -14,7 +14,7 @@
#include <string>
#include "luastack.hpp"
#include "util.hpp"
#include "world.hpp"
#include "viewer.hpp"
#include "traceback.hpp"
@@ -177,7 +177,7 @@ static void dotty(lua_State *L)
int main(int argc, char **argv)
{
LUAJIT_VERSION_SYM(); // Linker-enforced version check.
World w;
dotty(w.get_lua_state());
Viewer v;
dotty(v.get_lua_state());
return 0;
}