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

#include <vector>
#include <string>

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

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

#endif