Odin
Odin copied to clipboard
Add windows.ShowCursor
I'm unsure what course of action to take here. It seems that the foreign declaration of ShowCursor from windows (User32) is colliding with ShowCursor from Raylib.
I need ShowCursor too and would like to see some resolution to this PR.
It is under discussion. What we'll likely have to do is one of the following:
- For Windows, dynamically import
ShowCursorand wrap it to avoid the link conflict. - For RayLib don't link with
ShowCursoron Windows, and instead call the Windows version there.