summaryrefslogtreecommitdiffhomepage
path: root/View.h
diff options
context:
space:
mode:
Diffstat (limited to 'View.h')
-rw-r--r--View.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/View.h b/View.h
index 1928726..e259132 100644
--- a/View.h
+++ b/View.h
@@ -12,6 +12,7 @@ class View
{
public:
explicit View(std::vector<Grid> grids);
+ virtual ~View();
void update(float dt);
void draw() const;
private:
@@ -20,4 +21,5 @@ private:
std::vector<Label> m_labels;
int m_grid;
float m_timer;
+ Texture2D m_texture;
};