mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-27 05:28:30 +00:00
Minor tweaks to follow code conventions
This commit is contained in:
@@ -6464,7 +6464,7 @@ UWPMouseSetPosFunc UWPGetMouseSetPosFunc() { return uwpMouseSetPosFunc; }
|
||||
void UWPSetMouseSetPosFunc(UWPMouseSetPosFunc func) { uwpMouseSetPosFunc = func; }
|
||||
|
||||
void *UWPGetCoreWindowPtr() { return uwpCoreWindow; }
|
||||
void UWPSetCoreWindowPtr(void* ptr) { uwpCoreWindow = ptr; }
|
||||
void UWPSetCoreWindowPtr(void *ptr) { uwpCoreWindow = ptr; }
|
||||
void UWPMouseWheelEvent(int deltaY) { CORE.Input.Mouse.currentWheelMove = (float)deltaY; }
|
||||
|
||||
void UWPKeyDownEvent(int key, bool down, bool controlKey)
|
||||
|
Reference in New Issue
Block a user