]> git.stg.codes - stg.git/blob - include/stg/corp_conf.h
Fix fild types in services and corporations
[stg.git] / include / stg / corp_conf.h
1 #ifndef CORP_CONF_H
2 #define CORP_CONF_H
3
4 #include <string>
5
6 struct CORP_CONF
7 {
8 CORP_CONF(const std::string & n) : name(n), cash(0) {}
9 CORP_CONF(const std::string & n, double c) : name(n), cash(c) {}
10
11 std::string name;
12 double      cash;
13 };
14
15 #endif //CORP_CONF_H