mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-22 11:31:57 -04: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;
|