Major release

This commit is contained in:
2022-11-12 19:02:52 +01:00
parent cca140f6d7
commit b09dfcb7be
18 changed files with 985 additions and 0 deletions

14
src/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "main.hpp"
int main(int argc, char *argv[])
{
cmdLineArgs_c cmdline(argc, argv);
Starters_c spelronde1(Starters_c::MachineStandaard::Standaard, 3, 2000, 2000, 2000, 40, 40, 6000, 45000);
Starters_c spelronde2(Starters_c::MachineStandaard::Luxe, 1000, 1000, 105, 25, 9000, 25000);
std::cout << "Spelronde 1: " << spelronde1.calculate() << std::endl;
std::cout << "Spelronde 2: " << spelronde2.calculate() << std::endl;
return 0;
}