Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 710 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 710 Bytes

native_cursor

Native cursors for GameMaker!

(on Windows. Later HTML5 - have to rewrite everything from scratch)

What's interesting here

Just a bunch of WinAPI things, really. Made slightly more complex by the fact that I wanted this to be a tiny DLL.

Did you know that if you do

SetCursor(cursor);
DestroyCursor(cursor);
// ... more cleanup code 
SetCursor(NULL);

there's a very small chance that the system will access the cursor in the meantime and your application will crash? Gotta unset the cursors before destroying them.

Building

See BUILD.md

Meta

Author: YellowAfterlife
License: Custom license (see LICENSE)