fix imports

This commit is contained in:
iacore 2024-01-01 16:18:21 +00:00
parent 048bf83616
commit ca13a424e5
Failed to generate hash of commit
6 changed files with 13 additions and 7 deletions

View file

@ -1,6 +1,6 @@
// raylib-zig (c) Nikolas Wipper 2023
const rl = @import("raylib-zig");
const rl = @import("raylib-zig.zig");
const rlm = @import("raylib-zig-math.zig");
pub extern "c" fn Clamp(value: f32, min: f32, max: f32) f32;