X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9701b7ab4dc4cd709ad4dcaa750fc0021f15e231..13121b693bd98a04532195b9631b862b6136b3c7:/include/stg/corp_conf.h

diff --git a/include/stg/corp_conf.h b/include/stg/corp_conf.h
index 88a84f18..e29a5dcf 100644
--- a/include/stg/corp_conf.h
+++ b/include/stg/corp_conf.h
@@ -1,10 +1,15 @@
 #ifndef CORP_CONF_H
 #define CORP_CONF_H
 
+#include <string>
+
 struct CORP_CONF
 {
-string  name;
-double  cash;
+CORP_CONF(const std::string & n) : name(n), cash(0) {}
+CORP_CONF(const std::string & n, double c) : name(n), cash(c) {}
+
+std::string name;
+double      cash;
 };
 
 #endif //CORP_CONF_H