From a91b50cb90397e4455bd505017541c72d1a959e0 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 16 Aug 2025 10:48:37 +1000 Subject: [PATCH] remove import, fix paths --- includes.c | 6 +++--- math.d | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/includes.c b/includes.c index a2c74e1..c02432d 100644 --- a/includes.c +++ b/includes.c @@ -17,12 +17,12 @@ #define STB_IMAGE_IMPLEMENTATION -#include "../../external/stb/stb_image.h" +#include "external/stb/stb_image.h" #define M3D_IMPLEMENTATION -#include "../../external/m3d/m3d.h" +#include "external/m3d/m3d.h" #define CGLM_FORCE_DEPTH_ZERO_TO_ONE -#include "../../external/cglm/cglm.h" +#include "external/cglm/cglm.h" diff --git a/math.d b/math.d index 84a0392..bcdc398 100644 --- a/math.d +++ b/math.d @@ -5,7 +5,6 @@ import std.math; import std.math.algebraic; import core.stdc.math : tanf, cosf, sinf, sqrtf; import std.traits; -import inteli; import std.meta; import std.format; import std.stdio;