mach-gamemode moves back into the main repository

Helps hexops/mach#1165

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-03-04 10:33:16 -07:00 committed by Stephen Gutekanst
parent 221364415e
commit d64d30c7db
3 changed files with 265 additions and 2 deletions

View file

@ -9,6 +9,7 @@ pub const sysaudio = @import("mach-sysaudio");
// Mach standard library
pub const ecs = @import("ecs/main.zig");
pub const gamemode = @import("gamemode.zig");
pub const gfx = @import("gfx/main.zig");
pub const math = @import("math/main.zig");
pub const testing = @import("testing.zig");
@ -30,5 +31,6 @@ test {
_ = math;
_ = testing;
std.testing.refAllDeclsRecursive(ecs);
std.testing.refAllDeclsRecursive(gamemode);
std.testing.refAllDeclsRecursive(math);
}