33 lines
773 B
C++
33 lines
773 B
C++
#include <iostream>
|
|
#include <vector>
|
|
|
|
#include "Ressource.h"
|
|
//#include "City.h"
|
|
//#include "Decoration.h"
|
|
//#include "Hexagon.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
// Init all resources
|
|
std::vector<Ressource> woods;
|
|
std::vector<Ressource> stones;
|
|
std::vector<Ressource> irons;
|
|
std::vector<Ressource> wheats;
|
|
std::vector<int> ressources_q = {10, 20, 50, 100, 150};
|
|
|
|
for (int i : ressources_q) {
|
|
woods.emplace_back("Wood", i);
|
|
stones.emplace_back("Stone", i);
|
|
irons.emplace_back("Iron", i);
|
|
wheats.emplace_back("Wheat", i);
|
|
}
|
|
/*
|
|
City khamuls_tower_c("Khamûl's Tower");
|
|
City bazylan_c("Bazylan");
|
|
City mordor_c("Mordor");
|
|
|
|
Decoration angmar_banner("Angmar's Banner");
|
|
*/
|
|
|
|
return 0;
|
|
}
|