summaryrefslogtreecommitdiffhomepage
path: root/Stage.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stage.h')
-rw-r--r--Stage.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Stage.h b/Stage.h
index 0a0cb46..fcb69b3 100644
--- a/Stage.h
+++ b/Stage.h
@@ -1,10 +1,14 @@
#pragma once
+#include <memory>
+
+#include "Stats.h"
+
struct Stage
{
virtual ~Stage() = default;
virtual void update(float dt) = 0;
virtual void draw() = 0;
- virtual int total_bullets() const = 0;
+ std::shared_ptr<Stats> m_stats;
};