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