eliasYFGM

Juego de plataformas en C++/Allegro (Main.cpp)

Jul 21st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. // Main.cpp
  2. // Base para juego de plataformas en C++ y Allegro
  3.  
  4. #include "Juego.h"
  5.  
  6.  
  7. int main()
  8. {
  9.    Juego juego;
  10.  
  11.    juego.Correr();
  12.  
  13.    return 0;
  14. }
Add Comment
Please, Sign In to add comment