This repository has been archived on 2022-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
WaveGGJ17/VaporWaveWars/main.cpp
2017-01-21 14:29:08 +01:00

8 lines
130 B
C++

#include "mygame.hpp"
#include "compas.hpp"
int main() {
srand (time(NULL));
MyGame game;
game.run();
return 0;
}