Initial commit.
[gobie.git] / surface.h
blob386c23ea162e6a38c7925c9947994a077d282a7d
1 #include <SDL.h>
3 class Surface
5 public:
6 Surface();
7 ~Surface();
9 int width();
10 int height();
11 void draw(Surface& target, int x, int y);
13 private:
14 SDL_Surface* s;