SUPER Space invader : Turbo edition DX - VS GOD 1.0.0
A simple space invader ripoff
main.cpp
Go to the documentation of this file.
1
15#include <iostream>
16#include "game.h"
17using namespace std;
18
19int main(){
20 DEBUG_MSG("Starting program")
21 srand(time(NULL));
22
23 Game g;
24 g.managedGames();
25 DEBUG_MSG("Finished program. Goodbye !")
26
27 return 0;
28}
Main game class.
Definition: game.h:34
void managedGames()
start games managed by our class
Definition: gameBasics.cpp:63
full game logic and display management
int main()
Definition: main.cpp:19
#define DEBUG_MSG(X)
Definition: utils.h:32