Advertisement
thecplusplusguy

Mapcreator for the simple sidescroller (SDL) - main.cpp

Aug 7th, 2011
1,176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.80 KB | None | 0 0
  1. //This example program is created by thecplusplusuy for demonstration purposes (no video about this, I think, it's too simple, and not show nothing new, but I put the source up, to make a complete program with the simple sidescroller (there is video about that)). It's a map-creator for the simple sidescroller 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 program
  6. #include "mapcreator.h" //we include the header, so we can start the mapcreator program
  7.  
  8. int main(int argc,char** argv)
  9. {
  10.     mapcreator mc;  //we create a new instance of the mapcreator
  11.     mc.start();         //then we start the program
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement