mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-13 03:10:29 +00:00
fix missing return value of World_GetUserData
This commit is contained in:
2
vendor/box3d/box3d.odin
vendored
2
vendor/box3d/box3d.odin
vendored
@@ -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) ---
|
||||
|
||||
Reference in New Issue
Block a user