added icons and xml to livewp directory in debian rules
[shermanaquarium] / sherman-aquarium / shermans / bottom.h
1 #ifndef BOTTOM_H
2 #define BOTTOM_H
3
4 #define MAXPLANTS 4
5
6 #define DEFAULT_HAWTHORNE 2
7 #define DEFAULT_BDWELLER 2
8
9 #define BOTTOM_SCALE 30
10
11 #define NUMBOTTOMIMAGES 3
12
13 /* Number of plants, stones and none moving bottom things */
14 /* Only change if you add new graphics. */
15 #define NUMOFBOTTOMITEMS 18
16
17 #define DEFAULT_BOTTOM_ANIMALS 1
18
19
20
21 typedef struct
22 {
23     int have_sea_floor;
24     int max_plants;
25     int random_plants;
26     int scale;
27     int num_bottom_animals;
28 } Bottom_settings;
29
30
31 typedef struct {
32     char *image;
33     int flags;
34 } Bottom;
35
36
37 Bottom_settings *bottom_get_settings_ptr(void);
38 void bottom_init(void);
39 void bottom_exit(void);
40
41 #endif