Add missing credit for Esperanto translation
[neverball.git] / share / theme.h
blobd198df6c1a8a79b7b6ecff385069160c6c782df0
1 #ifndef THEME_H
2 #define THEME_H
4 #include "base_config.h"
5 #include "glext.h"
7 #define THEME_IMAGES_MAX 4
9 struct theme
11 GLuint tex[THEME_IMAGES_MAX];
13 GLfloat t[4];
14 GLfloat s[4];
17 int theme_load(struct theme *, const char *name);
18 void theme_free(struct theme *);
20 #endif