raylib-zig-bindings 1.0.0
Breaking change from version 0.0.2:
- All enum functions
toValue
andfromValue
have been replaced withtoCInt
andfromCInt
.
It is now possible to combine all bindings into one global struct:
const rl = struct {
const rlzb = @import("rlzb");
usingnamespace rlzb.raylib;
usingnamespace rlzb.rlgl;
usingnamespace rlzb.rcamera;
usingnamespace rlzb.raygui;
};
Full Changelog: 0.0.2...1.0.0