Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-05-25 16:44:37 +0000
committerStijn Buys <ingar@osirion.org>2008-05-25 16:44:37 +0000
commitf7283b2b9a9bf305ac110ef00cd5c21d5304bfbb (patch)
tree8b595b0971a63678414daead588c6b27a209d819 /src/model/model.h
parent18180a06fa99bd97587b7c6e5bc60395b1d01262 (diff)
target_flare
Diffstat (limited to 'src/model/model.h')
-rw-r--r--src/model/model.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/model/model.h b/src/model/model.h
index ce288df..cb1352f 100644
--- a/src/model/model.h
+++ b/src/model/model.h
@@ -14,6 +14,7 @@
#include "math/mathlib.h"
#include "model/engine.h"
#include "model/light.h"
+#include "model/flare.h"
/// classes representing 3D geometry
namespace model
@@ -89,6 +90,12 @@ public:
/// add a light to the model
void add_light(Light *light);
+
+ /// list of flares
+ std::list<Flare *> model_flare;
+
+ /// add a flare to the model
+ void add_flare(Flare *flare);
std::string model_name;
float model_radius;