summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CApi.h4
-rw-r--r--src/LuaApi.h4
-rw-r--r--src/main.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/CApi.h b/src/CApi.h
index 651cc13..6d61913 100644
--- a/src/CApi.h
+++ b/src/CApi.h
@@ -3,7 +3,7 @@
#include "Level.h"
#include "Scene.h"
-#include <lua.hpp>
+#include "lua.hpp"
#include <memory>
extern std::shared_ptr<Level> lvl;
@@ -200,4 +200,4 @@ void init_c_api(lua_State *L) {
lua_register(L, "c_get_treasures", c_get_treasures);
}
-#endif // DNG_CAPI_H \ No newline at end of file
+#endif // DNG_CAPI_H
diff --git a/src/LuaApi.h b/src/LuaApi.h
index cb68e36..088832c 100644
--- a/src/LuaApi.h
+++ b/src/LuaApi.h
@@ -2,7 +2,7 @@
#define DNG_LUA_API_H
#include <iostream>
-#include <lua.hpp>
+#include "lua.hpp"
struct LState {
lua_State *onkeypress;
@@ -86,4 +86,4 @@ bool lua_onwin(lua_State *L) { return lua_dofn(L, "onWin"); }
bool lua_onloss(lua_State *L) { return lua_dofn(L, "onLoss"); }
-#endif // DNG_LUA_API_H \ No newline at end of file
+#endif // DNG_LUA_API_H
diff --git a/src/main.cpp b/src/main.cpp
index a4183f7..3f464e1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,7 +4,7 @@
//#include <SFML/Graphics.hpp>
#include <filesystem>
#include <iostream>
-#include <lua.hpp>
+#include "lua.hpp"
const char *DEFAULT_PROC = "include/defaults.lua";