Zig utility library
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add descriptions to module groups

IamPyu 2940f200 1b39beb3

+8
+2
src/data/root.zig
··· 1 + //! Data structures 2 + 1 3 const sparse_set = @import("./SparseSet.zig"); 2 4 pub const SparseSet = sparse_set.SparseSet; 3 5
+2
src/gamedev/root.zig
··· 1 + //! Game development 2 + 1 3 pub const tick = @import("./tick.zig"); 2 4 pub const ResourcePath = @import("./ResourcePath.zig"); 3 5
+2
src/net/root.zig
··· 1 + //! Networking 2 + 1 3 pub const packet = @import("./packet.zig"); 2 4 3 5 test {
+2
src/root.zig
··· 1 + //! Utility library for Zig 2 + 1 3 const std = @import("std"); 2 4 3 5 pub const math = @import("./math.zig");