Screenshots with F9.
[sdlbotor.git] / drawable.h
blob00d01c475c84e543b744c37df3b19abb92fd801c
1 #ifndef DRAWABLE_H
2 #define DRAWABLE_H
4 #include "sdlinclude.h"
6 namespace botor
9 struct Drawable
11 virtual ~Drawable();
12 virtual void Draw( Sint16 X, Sint16 Y ) = 0;
17 #endif