summaryrefslogtreecommitdiffhomepage
path: root/Stats.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-22 01:11:24 +0200
committerAki <please@ignore.pl>2022-04-22 01:11:24 +0200
commit804e71083e4df85c4f0692553de3084f0ed4cd9a (patch)
tree6cfdf65ee7de9c14984677ca4a607b27d9080e00 /Stats.h
parent7b8e199b0b6cccdf022bcd072bcdd8ab6c4072b1 (diff)
downloadbullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.zip
bullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.tar.gz
bullethell2022-804e71083e4df85c4f0692553de3084f0ed4cd9a.tar.bz2
Added Stats for lifes points and other kind of gameplay state
Diffstat (limited to 'Stats.h')
-rw-r--r--Stats.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Stats.h b/Stats.h
new file mode 100644
index 0000000..ea46681
--- /dev/null
+++ b/Stats.h
@@ -0,0 +1,10 @@
+#pragma once
+
+
+struct Stats
+{
+ Stats();
+ int lifes;
+ int points;
+ int total_bullets;
+};