added icons and xml to livewp directory in debian rules
[shermanaquarium] / sherman-aquarium / shermans / over.h
1 #ifndef OVER_H
2 #define OVER_H
3 #include <gai/gai.h>
4 #include "aquarium.h"
5
6
7 #define OVER_OFF 0
8 #define OVER_MATRIX 1
9 #define OVER_PLASMA 2
10 #define OVER_TETRIS 3
11
12
13 typedef struct
14 {
15     int fade;
16     int cursor_off;
17     int type;
18 } Over_settings;
19
20 void over_init(void);
21 void over_exit(void);
22 int over_update(int);
23 void over_draw(int, int, int, int, int, unsigned char*);
24 void over_keypress(int);
25 void over_joystick(GaiFlagsJoystick);
26 Over_settings *over_get_settings_ptr(void);
27 #endif