Initial push
[shermanaquarium] / sherman-aquarium / shermans / background.h
diff --git a/sherman-aquarium/shermans/background.h b/sherman-aquarium/shermans/background.h
new file mode 100644 (file)
index 0000000..e94dd80
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef BACKGROUND_H
+#define BACKGROUND_H
+
+#define BG_SOLID 0 
+#define BG_SHADED 1
+#define BG_WATER 2
+#define BG_IMAGE 3
+
+
+typedef struct
+{
+    char *imagename, *imagename_new;
+    int type;
+    int desktop;
+    GaiColor shaded_top_c, shaded_bot_c, solid_c;
+
+} Background_settings;
+
+Background_settings *background_get_settings_ptr(void);
+void background_init(void);
+void background_exit(void);
+#endif