asteroidgen/src/main.cpp

8 lines
95 B
C++
Raw Permalink Normal View History

2017-10-29 05:16:22 +01:00
#include "Application.h"
2017-10-26 12:49:45 +02:00
int main(void) {
2017-11-02 03:44:44 +01:00
srand(time(0));
2017-10-29 05:16:22 +01:00
Application::instance().run();
2017-10-26 12:49:45 +02:00
}