mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-10 18:21:14 +00:00
9 lines
141 B
C
9 lines
141 B
C
#pragma once
|
|
|
|
typedef struct CursorBitmap {
|
|
int width;
|
|
int height;
|
|
const unsigned char* data;
|
|
const unsigned char* mask;
|
|
} CursorBitmap;
|