View Single Post
  #3  
Old 02-03-2013, 10:59 AM
Zaela_S
Hill Giant
 
Join Date: Jun 2012
Posts: 216
Default

Oh, spotted one little mistake at the top of the first file, emblua.h:

Code:
#ifdef EMBLUA
#include "lua.hpp"
#include "masterentity.h"
#endif
should be

Code:
#ifdef EMBLUA
#include "lua.hpp"
#endif
#include "masterentity.h"
Reply With Quote