spawn.h 287 B

12345678910111213
  1. #ifndef SPAWN_H_INCLUDED
  2. #define SPAWN_H_INCLUDED
  3. #include <SDL.h>
  4. #include "Input.h"
  5. #include "SDL_gfxPrimitives.h"
  6. #include <vector>
  7. #include <cstdlib>
  8. #include <ctime>
  9. void spawn( std::vector<SDL_Rect>* obs, Uint16 nb, Uint16 w, Uint16 h );
  10. #endif // SPAWN_H_INCLUDED