2017-04-18 23:04:21 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include "src/json/json.h"
|
|
|
|
#include "src/loaders.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2017-04-18 23:35:06 +00:00
|
|
|
Conf jsonLoader = Conf("config.json");
|
2017-04-19 04:59:05 +00:00
|
|
|
UnitHolder units = UnitHolder( jsonLoader.get_units_path() );
|
2017-04-18 23:04:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|