Mario-Sokoban from the OpenClassroom C Lesson exercice.

game.h 337B

12345678910111213141516
  1. //
  2. // game.h
  3. // Mario Sokoban
  4. //
  5. // Created by Benoit Sida on 2014-02-16.
  6. // Copyright (c) 2014 Benoit Sida. All rights reserved.
  7. //
  8. #ifndef Mario_Sokoban_game_h
  9. #define Mario_Sokoban_game_h
  10. void game(int, SDL_Window*, SDL_Surface*);
  11. void mooveMario(int map[][NB_BLOCS_HAUTEUR], SDL_Rect*, int);
  12. void mooveBox(int*, int*);
  13. #endif