aboutsummaryrefslogtreecommitdiff
path: root/game/coins/CoinData.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/coins/CoinData.h')
-rw-r--r--game/coins/CoinData.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/game/coins/CoinData.h b/game/coins/CoinData.h
new file mode 100644
index 0000000..09b3448
--- /dev/null
+++ b/game/coins/CoinData.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "types.h"
+#include <string>
+
+struct CoinData{
+ crepe::vec2 start_location = {0,0};
+ std::string name = "";
+ bool active = false;
+ CoinData(crepe::vec2 start_location) : start_location(start_location),name(""), active(false) {}
+};