//#include "stdafx.h" //precompiled headers are bad
#include <unordered_map>
#include <string>
#include <utility>

using namespace std; //evil
typedef pair<double, double> stats; //prefer "using stats = std::pair<double, double>;"

class BuildInfo
{
private:
	unordered_map<string, string> info;
	const double BUILD_GROWTH = 1.15;

public:
	BuildInfo() : info ({{"Cursor", "test"}, {"Grandma", "test"}, 
		{"Farm", "test"}, {"Factory", "test"}})
	{
	}
};

int main()
{
	BuildInfo bi;
}
