Mario-Sokoban from the OpenClassroom C Lesson exercice.

123456789101112131415
  1. //
  2. // level.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_level_h
  9. #define Mario_Sokoban_level_h
  10. int loadLevel(int, int, int map[][NB_BLOCS_HAUTEUR]);
  11. int saveLevel(int map[][NB_BLOCS_HAUTEUR]);
  12. #endif