aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Script.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Script.hpp')
-rw-r--r--src/components/Script.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/Script.hpp b/src/components/Script.hpp
index 66addc8..069fea9 100644
--- a/src/components/Script.hpp
+++ b/src/components/Script.hpp
@@ -47,6 +47,12 @@ public:
caller["Idle"](caller); // Call idle function and pass itself
// in or to fulfill the 'self' param
}
+
+ void update(void)
+ {
+ if (caller["Update"] == sol::type::function)
+ caller["Update"](caller);
+ }
};
#endif // COMPONENT_SCRIPT_HPP_