mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-04-21 21:51:22 +02:00
29 lines
319 B
C++
Executable File
29 lines
319 B
C++
Executable File
|
|
#include <iostream>
|
|
|
|
#include "string.h"
|
|
#include "vector.h"
|
|
|
|
#include "player.h"
|
|
#include "tile.h"
|
|
|
|
#include "tile_loader.h"
|
|
#include "player_loader.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "math.h"
|
|
|
|
int main() {
|
|
Math::randomize();
|
|
|
|
Board b;
|
|
b.load("tiles.config", "players.config");
|
|
|
|
b.run();
|
|
|
|
b.print();
|
|
|
|
return 0;
|
|
}
|