repo.or.cz
/
zeta.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Zeta GUI library overview
[zeta.git]
/
src
/
zeta_factory.h
blob
bc1446659b760f59f87a31fcc86e043b9d2c7b2b
1
#ifdef ZETA_FACTORY
2
#define ZETA_FACTORY
3
4
#ifdef ZETA_USE_SDL
5
6
class
create
{
7
public
:
8
static
zeta_font
font
(
string name
,
size_t
size
) {
9
return
zeta_font_sdl
(
name
,
size
);
10
}
11
static
zeta_interface
interface
() {
12
return
zeta_interface_sdl
();
13
}
14
};
15
16
17
18
#endif
19
20
#endif