all: canonicalize import paths with mach- prefix

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-09-21 14:36:21 -07:00
parent 26a9392188
commit 52c4eb5d74
6 changed files with 14 additions and 16 deletions

View file

@ -1,8 +1,7 @@
const std = @import("std");
const core = @import("core");
const core = @import("mach-core");
const gpu = core.gpu;
const ecs = @import("ecs");
const ft = @import("freetype");
const ecs = @import("mach-ecs");
const Engine = @import("../engine.zig").Engine;
const FontRenderer = @import("font.zig").FontRenderer;
const mach = @import("../main.zig");