Update to raylib head

This commit is contained in:
Not-Nik 2023-08-05 20:16:53 +02:00
parent 0d4cc3ac8c
commit 79ee589441
Failed to generate hash of commit
3 changed files with 31 additions and 2 deletions

View file

@ -703,7 +703,13 @@ pub const Model = extern struct {
}
};
pub const ModelAnimation = extern struct { boneCount: c_int, frameCount: c_int, bones: [*c]BoneInfo, framePoses: [*c][*c]Transform, name: [32]u8 };
pub const ModelAnimation = extern struct {
boneCount: c_int,
frameCount: c_int,
bones: [*c]BoneInfo,
framePoses: [*c][*c]Transform,
name: [32]u8,
};
pub const Ray = extern struct {
position: Vector3,
@ -799,6 +805,7 @@ pub const ConfigFlags = enum(c_int) {
flag_window_topmost = 4096,
flag_window_highdpi = 8192,
flag_window_mouse_passthrough = 16384,
flag_borderless_windowed_mode = 32768,
flag_interlaced_hint = 65536,
_,
};