X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;ds=sidebyside;f=src%2Fmouse_cursor.h;fp=src%2Fmouse_cursor.h;h=af9e3ced867d3ced5e8deca745e704b615d3c7fc;hb=5449bf8fbca1d2cfbefa0386df7109afb2a5aa34;hp=0000000000000000000000000000000000000000;hpb=094e53b80e5576db6c86bb7dc6141b0cff7fa665;p=winnie diff --git a/src/mouse_cursor.h b/src/mouse_cursor.h new file mode 100644 index 0000000..af9e3ce --- /dev/null +++ b/src/mouse_cursor.h @@ -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_