We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85c6d82 commit cf48eb9Copy full SHA for cf48eb9
libs/JoltC/JoltPhysicsC.h
@@ -985,6 +985,8 @@ typedef struct JPC_CharacterContactListenerVTable
985
986
typedef struct JPC_ContactListenerVTable
987
{
988
+ _JPC_VTABLE_HEADER;
989
+
990
// Optional, can be NULL.
991
JPC_ValidateResult
992
(*OnContactValidate)(void *in_self,
src/zphysics.zig
@@ -717,6 +717,7 @@ pub const ContactListener = extern struct {
717
}
718
719
pub const VTable = extern struct {
720
+ __header: VTableHeader = .{},
721
onContactValidate: ?*const fn (
722
self: *ContactListener,
723
body1: *const Body,
0 commit comments