16 lines
702 B
C++
16 lines
702 B
C++
#include "main.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
cmdLineArgs_c cmdline(argc, argv);
|
|
|
|
Starters_c gameSession1(Starters_c::MachineStandard::Standard, 3, 2000, 2000, 2000, 40, 40, 6000, 45000);
|
|
Starters_c gameSession2(Starters_c::MachineStandard::Luxe, 1000, 1000, 105, 25, 9000, 25000);
|
|
Starters_c gameSession3(Starters_c::MachineStandard::Luxe, 1000, 1000, 1000, 105, 25, 9000, 25000);
|
|
|
|
debugln("Game Session 1: " << gameSession1.calculate());
|
|
debugln("Game Session 2: " << gameSession2.calculate());
|
|
debugln("Game Session 3: " << gameSession3.calculate() << " " << gameSession3.getResult() / gameSession2.getResult() * 100 << "% better then before");
|
|
|
|
return 0;
|
|
} |