ikskuh/zig-gamedev-lib
xq's Zig Game Development Library
NOTE: THIS PROJECT IS NOW ARCHIVED AS THE CODE IN IT SPLIT INTO SEVERAL OTHER PROJECTS.
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.