blob: 8aa96779a7545e04ace73f24dab88a3430e4fcc6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "fefisms.h"
int main(int argc, char** argv)
{
std::random_device randomDevice;
std::mt19937 rng(randomDevice());
if (argc != 2)
{
std::cout << "usage: fefisms [configfile]" << std::endl;
return -1;
}
std::string configfile(argv[1]);
try
{
fefisms bot(configfile, rng);
try
{
bot.run();
} catch (const std::exception& ex)
{
std::cout << "Error running bot: " << ex.what() << std::endl;
}
} catch (const std::exception& ex)
{
std::cout << "Error initializing bot: " << ex.what() << std::endl;
}
}
|