raylib/raymath/rlgl/raygui: Expose cdef (#152)

This commit is contained in:
Not-Nik 2024-10-02 22:34:17 +02:00
parent 855ab9cd70
commit 01b6e1a2e2
Failed to generate hash of commit
8 changed files with 18 additions and 16 deletions

View file

@ -1,14 +1,13 @@
const rl = @import("raylib-zig");
const std = @import("std");
const cdef = @import("raygui-ext.zig");
pub const cdef = @import("raygui-ext.zig");
test {
std.testing.refAllDeclsRecursive(@This());
}
pub const RayguiError = error{
GetIcons
};
pub const RayguiError = error{GetIcons};
const Vector2 = rl.Vector2;
const Vector3 = rl.Vector3;