replace module() helper; remove invalid re-exports;

Fixes hexops/mach#1041
Helps hexops/mach#1038

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-09-24 17:20:40 -07:00
parent 2615afaaed
commit 4e091f1cb8
3 changed files with 65 additions and 50 deletions

View file

@ -1,13 +1,10 @@
// Core re-exports
pub const core = @import("mach-core");
pub const GPUInterface = core.GPUInterface;
pub const Timer = core.Timer;
pub const scope_levels = core.scope_levels;
pub const log_level = core.log_level;
// Mach packages
pub const gpu = core.gpu;
pub const sysjs = @import("sysjs");
pub const sysjs = @import("mach-sysjs");
pub const ecs = @import("mach-ecs");
pub const sysaudio = @import("mach-sysaudio");