Guest User

Untitled

a guest
Feb 8th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. /*
  2.  * main.cpp
  3.  * Entry point for game
  4.  *
  5.  */
  6.  
  7. #include <SDL2/SDL.h>
  8. #include <iostream>
  9.  
  10. #include "Game.h"
  11. #include "functions.h"
  12.  
  13. int main(int argc, char* argv[]) {
  14.     Game game;
  15.     game.run();
  16.  
  17.     return 0;
  18. }
Add Comment
Please, Sign In to add comment