mach: gfx2d: fix imports

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-05-17 20:38:10 -07:00
parent 8d2d31f6cb
commit a2d222072e

View file

@ -1,6 +1,7 @@
const std = @import("std");
const gpu = @import("mach").gpu;
const ecs = @import("mach").ecs;
const core_mod = @import("core");
const gpu = core_mod.gpu;
const ecs = @import("ecs");
const math = @import("../math.zig");
const mat = math.mat;