build: remove earcut dependency

Related to hexops/mach#967

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-09-21 14:10:18 -07:00
parent 4d18ef54df
commit 26a9392188
2 changed files with 0 additions and 7 deletions

View file

@ -8,7 +8,6 @@ pub const gpu = core.gpu;
pub const sysjs = @import("sysjs");
pub const ecs = @import("ecs");
pub const sysaudio = @import("sysaudio");
pub const earcut = @import("earcut");
pub const gfx = @import("gfx/util.zig");
pub const gfx2d = struct {
pub const Sprite2D = @import("gfx2d/Sprite2D.zig");
@ -36,5 +35,4 @@ test {
std.testing.refAllDeclsRecursive(Atlas);
std.testing.refAllDeclsRecursive(math);
_ = ecs;
_ = earcut;
}