Mario-Sokoban from the OpenClassroom C Lesson exercice.

editor.h 251B

1234567891011121314
  1. //
  2. // editor.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_editor_h
  9. #define Mario_Sokoban_editor_h
  10. void editor(SDL_Window*, SDL_Surface*);
  11. #endif