Cosmetics

This commit is contained in:
Birunthan Mohanathas
2012-05-30 09:56:20 +03:00
parent 9623766a61
commit dc35b31559
7 changed files with 22 additions and 40 deletions

View File

@ -18,8 +18,13 @@
#ifndef __LUAMANAGER_H__
#define __LUAMANAGER_H__
#include "lua.hpp"
extern "C"
{
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
class LuaManager
{

View File

@ -19,7 +19,6 @@
#ifndef __LUASCRIPT_H__
#define __LUASCRIPT_H__
#include "lua.hpp"
#include "LuaManager.h"
class LuaScript

View File

@ -1,16 +0,0 @@
// lua.hpp
// Lua header files for C++
// <<extern "C">> not supplied automatically because Lua also compiles as C++
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
#ifdef _RELEASE
#else if _DEBUG
#endif