aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-06-08 08:47:31 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-06-08 08:47:31 -0400
commit6882786999581e2280c870249ae448c744767e73 (patch)
tree665eb129c395250e3f390d5e86ac8896ac636322 /include/entities.hpp
parent7110a4ab054341c9f41972b06044853138f526a8 (diff)
parenta978ddfb98734514874231ed28d0395533afa25d (diff)
merge; lights, xmls
Diffstat (limited to 'include/entities.hpp')
-rw-r--r--include/entities.hpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/include/entities.hpp b/include/entities.hpp
index b04705c..826b0f6 100644
--- a/include/entities.hpp
+++ b/include/entities.hpp
@@ -364,7 +364,8 @@ public:
float fireFlicker;
vec2 fireLoc;
- Light(vec2 l, Color c, float r){
+ Light(vec2 l, float r, Color c)
+ {
loc = l;
color = c;
radius = r;
@@ -375,7 +376,14 @@ public:
flame = false;
}
- void makeFlame(void){
+ void follow(Entity *f)
+ {
+ following = f;
+ belongsTo = true;
+ }
+
+ void makeFlame(void)
+ {
flame = true;
}