repo.or.cz
/
gobie.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit.
[gobie.git]
/
surface.h
blob
386c23ea162e6a38c7925c9947994a077d282a7d
1
#include <SDL.h>
2
3
class
Surface
4
{
5
public
:
6
Surface
();
7
~
Surface
();
8
9
int
width
();
10
int
height
();
11
void
draw
(
Surface
&
target
,
int
x
,
int
y
);
12
13
private
:
14
SDL_Surface
*
s
;
15
};
16