blob: 09b3448537e77bb521f481dbc35de2a87685f1e0 (
plain)
1
2
3
4
5
6
7
8
9
10
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) {}
};
|