* in progress *
[winnie] / src / mouse_cursor.h
diff --git a/src/mouse_cursor.h b/src/mouse_cursor.h
new file mode 100644 (file)
index 0000000..af9e3ce
--- /dev/null
@@ -0,0 +1,28 @@
+#ifndef MOUSE_CURSOR_H_
+#define MOUSE_CURSOR_H_
+
+const int mouse_cursor_width = 8;
+const int mouse_cursor_height = 16;
+
+const int mouse_cursor_bw[] = {
+       128, 128,   0,   0,   0,   0,   0,   0,
+       128, 255, 128,   0,   0,   0,   0,   0,
+       128, 255, 255, 128,   0,   0,   0,   0,
+       128, 255, 255, 255, 128,   0,   0,   0,
+       128, 255, 255, 255, 255, 128,   0,   0,
+       128, 255, 255, 255, 255, 255, 128,   0,
+       128, 255, 255, 255, 255, 255, 255, 128,
+       128, 255, 255, 255, 255, 255, 128,   0,
+       128, 255, 255, 255, 255, 128,   0,   0,
+       128, 255, 255, 255, 255, 128,   0,   0,
+       128, 255, 255, 255, 255, 255, 128,   0,
+       128, 255, 255, 255, 255, 255, 128,   0,
+       128, 255, 128, 128, 255, 255, 255, 128,
+       128, 128,   0, 128, 255, 255, 255, 128,
+       128,   0,   0,   0, 128, 255, 255, 128,
+         0,   0,   0,   0,   0, 128, 128, 128
+};
+
+
+
+#endif // MOUSE_CURSOR_H_