11 lines
211 B
C++
11 lines
211 B
C++
#include <iostream>
|
|
#include "src/json/json.h"
|
|
#include "src/loaders.h"
|
|
|
|
int main()
|
|
{
|
|
Conf jsonLoader = Conf("config.json");
|
|
UnitHolder units = UnitHolder( jsonLoader.get_units_path() );
|
|
|
|
return 0;
|
|
} |