| 12345678910111213141516 |
- //
- // game.h
- // Mario Sokoban
- //
- // Created by Benoit Sida on 2014-02-16.
- // Copyright (c) 2014 Benoit Sida. All rights reserved.
- //
-
- #ifndef Mario_Sokoban_game_h
- #define Mario_Sokoban_game_h
-
- void game(int, SDL_Window*, SDL_Surface*);
- void mooveMario(int map[][NB_BLOCS_HAUTEUR], SDL_Rect*, int);
- void mooveBox(int*, int*);
-
- #endif
|