summaryrefslogtreecommitdiff
path: root/scene.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene.h')
-rw-r--r--scene.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/scene.h b/scene.h
index 95ae158..f040ca8 100644
--- a/scene.h
+++ b/scene.h
@@ -6,6 +6,7 @@
#include "gl.h"
#include "shader.h"
#include "gui.h"
+#include "particle.h"
#include <FTGL/ftgl.h>
@@ -33,8 +34,12 @@ class Scene {
int sx, sy;
GLShaderProgram terrain_program;
+ GLShaderProgram selection_program;
+
+ ParticleGroup<SelectionParticle> *selection_particles;
GLuint grass_texture, rock_texture, soil_texture, marker_texture;
+ GLuint circle_texture;
Scene();
~Scene();