repo.or.cz
/
sdlbotor.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Screenshots with F9.
[sdlbotor.git]
/
drawable.h
blob
00d01c475c84e543b744c37df3b19abb92fd801c
1
#ifndef DRAWABLE_H
2
#define DRAWABLE_H
3
4
#include
"sdlinclude.h"
5
6
namespace
botor
7
{
8
9
struct
Drawable
10
{
11
virtual
~
Drawable
();
12
virtual
void
Draw
(
Sint16 X
,
Sint16 Y
) =
0
;
13
};
14
15
}
16
17
#endif