Background.cpp 169 B

12345678910111213141516
  1. #include "Background.h"
  2. #include "DiPoint.h"
  3. void Background::initialize()
  4. {
  5. }
  6. int Background::update()
  7. {
  8. return 0;
  9. }
  10. void Background::draw(SDL_Surface *screen)
  11. {
  12. }