ikskuh/zig-gamedev-lib
xq's Zig Game Development Library
Make the module available as xq3d
:
pub fn build(b: *Builder) void {
const exe = b.addExecutable(…);
…
exe.addPackagePath("xq3d", "…/zig-gamedev-lib/src/lib.zig");
…
}
Include the module:
const xq3d = @import("xq3d");
Read the source. There is none at the moment.