Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * main.cpp
- * Entry point for game
- *
- */
- #include <SDL2/SDL.h>
- #include <iostream>
- #include "Game.h"
- #include "functions.h"
- int main(int argc, char* argv[]) {
- Game game;
- game.run();
- return 0;
- }
Add Comment
Please, Sign In to add comment