Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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;