8 lines
130 B
C++
8 lines
130 B
C++
#include "mygame.hpp"
|
|
#include "compas.hpp"
|
|
int main() {
|
|
srand (time(NULL));
|
|
MyGame game;
|
|
game.run();
|
|
return 0;
|
|
}
|