aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Component.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-29 20:02:35 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-29 20:02:35 -0400
commite1cdfd27cad943290a0233119548a8dd8876bd52 (patch)
tree1dc0526cc492f9112b5269511c9d634599304940 /src/components/Component.hpp
parent4ac4b280abf2ffa28caa5a532353115a3033444f (diff)
Replaced LuaBridge with sol2 and completely encapsulated scripting within script system
Diffstat (limited to 'src/components/Component.hpp')
-rw-r--r--src/components/Component.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Component.hpp b/src/components/Component.hpp
index 84e860c..9c6b79d 100644
--- a/src/components/Component.hpp
+++ b/src/components/Component.hpp
@@ -19,7 +19,7 @@
#ifndef COMPONENT_HPP_
#define COMPONENT_HPP_
-#include "LuaBridge/LuaBridge.h"
+#include "sol/sol.hpp"
template <typename T>
class Component
@@ -27,7 +27,7 @@ class Component
public:
Component(){};
- virtual T FromLua(luabridge::LuaRef) = 0;
+ virtual T FromLua(sol::object) = 0;
};
#endif//COMPONENT_HPP_