Advertisement
thecplusplusguy

SDL tutorial 10 - main.cpp

Jun 22nd, 2012
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. //http://www.youtube.com/user/thecplusplusguy
  2. //Thanks for the typed in code to Tapit85
  3. #include "snake.h"
  4.  
  5. int main()
  6. {
  7.     snakeclass s;
  8.     s.start();
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement