aboutsummaryrefslogtreecommitdiff
path: root/game/tech.h
blob: a8de9c142116592826e6c42a3e77af8d1d59fc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef TECH_H
#define TECH_H

#include <vector>
#include <string>

#include "../umath/vec2.h"

class Tech {
    public:
    Tech() {}
    
    std::string name;
    std::vector<int> cost { 0, 0 };
    
    vec2 spritebounds { 0, 0 };
};

#endif