Removed preprocessor switch surrounding library headers

This commit is contained in:
Kayne Ruse
2015-01-03 03:20:13 +11:00
parent 0344fe0d6d
commit 877c0f59d3
27 changed files with 29 additions and 139 deletions
+1 -5
View File
@@ -22,11 +22,7 @@
#ifndef WAYPOINTAPI_HPP_
#define WAYPOINTAPI_HPP_
#if defined(__MINGW32__)
#include "lua/lua.hpp"
#else
#include "lua.hpp"
#endif
#include "lua.hpp"
#define TORTUGA_WAYPOINT_API "waypoint"
LUAMOD_API int openWaypointAPI(lua_State* L);
+1 -5
View File
@@ -24,11 +24,7 @@
#include "entity.hpp"
#if defined(__MINGW32__)
#include "lua/lua.hpp"
#else
#include "lua.hpp"
#endif
#include "lua.hpp"
#include <string>
+1 -5
View File
@@ -26,11 +26,7 @@
#include "singleton.hpp"
#include "vector2.hpp"
#if defined(__MINGW32__)
#include "lua/lua.hpp"
#else
#include "lua.hpp"
#endif
#include "lua.hpp"
#include <functional>
#include <map>
+1 -5
View File
@@ -22,11 +22,7 @@
#ifndef WAYPOINTMANAGERAPI_HPP_
#define WAYPOINTMANAGERAPI_HPP_
#if defined(__MINGW32__)
#include "lua/lua.hpp"
#else
#include "lua.hpp"
#endif
#include "lua.hpp"
#define TORTUGA_WAYPOINT_MANAGER_API "waypoint_manager"
LUAMOD_API int openWaypointManagerAPI(lua_State* L);
+1 -5
View File
@@ -22,11 +22,7 @@
#ifndef WAYPOINTSYSTEMAPI_HPP_
#define WAYPOINTSYSTEMAPI_HPP_
#if defined(__MINGW32__)
#include "lua/lua.hpp"
#else
#include "lua.hpp"
#endif
#include "lua.hpp"
#define TORTUGA_WAYPOINT_SYSTEM_API "waypoint_system"
LUAMOD_API int openWaypointSystemAPI(lua_State* L);