Skip to content

raylib-zig-bindings 1.0.0

Compare
Choose a tag to compare
@L-Briand L-Briand released this 01 Jun 20:55
· 3 commits to master since this release

Breaking change from version 0.0.2:

  • All enum functions toValue and fromValue have been replaced with toCInt and fromCInt.

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