aboutsummaryrefslogtreecommitdiffstats
path: root/include/systems
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-21 19:56:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-21 19:56:48 -0400
commitb64aa31b4dc0c5e050c4978bae7bd43a040a368b (patch)
tree4c16f9d1eb3bac11f74508c241e76cfddabc7a19 /include/systems
parent7644b740e87053838f3c7a80e88ad192fcf1a5e2 (diff)
lua scriptable world gen
Diffstat (limited to 'include/systems')
-rw-r--r--include/systems/light.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/systems/light.hpp b/include/systems/light.hpp
index 71c541a..ba91113 100644
--- a/include/systems/light.hpp
+++ b/include/systems/light.hpp
@@ -29,6 +29,9 @@ public:
static int addLight(vec2 pos, float radius, Color color = Color(1, 1, 1));
static void updateLight(int index, vec2 pos, float radius = -1);
static void removeLight(int index);
+
+ static inline void clear(void)
+ { lights.clear(); }
};
#endif // SYSTEM_LIGHT_HPP_