Advertisement
thecplusplusguy

Simple sidescroller game - main.cpp

Jul 14th, 2011
1,802
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. //This example program is created by thecplusplusuy for demonstration purposes. It's a simple mario like side-scroller game:
  2. //http://www.youtube.com/user/thecplusplusguy
  3. //Free source, modify if you want, LGPL licence (I guess), I would be happy, if you would not delete the link
  4. //so other people can see the tutorial
  5. //this file is main.cpp the entry point of the game
  6. #include "game.h"
  7.  
  8. int main(int argc,char* argv[])
  9. {
  10.     game g;
  11.     g.start();
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement