fix missing return value of World_GetUserData

This commit is contained in:
Felipe Brandão
2026-07-10 22:10:04 -03:00
parent 5c6194c988
commit d62d17faa3

View File

@@ -389,7 +389,7 @@ foreign lib {
World_SetUserData :: proc(worldId: WorldId, userData: rawptr) ---
// Get the user data pointer.
World_GetUserData :: proc(worldId: WorldId) ---
World_GetUserData :: proc(worldId: WorldId) -> rawptr ---
// Set the friction callback. Passing NULL resets to default.
World_SetFrictionCallback :: proc(worldId: WorldId, callback: FrictionCallback) ---