diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-08 08:47:31 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-08 08:47:31 -0400 |
commit | 6882786999581e2280c870249ae448c744767e73 (patch) | |
tree | 665eb129c395250e3f390d5e86ac8896ac636322 /include/entities.hpp | |
parent | 7110a4ab054341c9f41972b06044853138f526a8 (diff) | |
parent | a978ddfb98734514874231ed28d0395533afa25d (diff) |
merge; lights, xmls
Diffstat (limited to 'include/entities.hpp')
-rw-r--r-- | include/entities.hpp | 12 |
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; } |