From e4e06406fd5e3c9b95315606f6888724caaa99e7 Mon Sep 17 00:00:00 2001 From: Graham Pentheny Date: Mon, 31 Mar 2025 01:05:05 -0400 Subject: [PATCH] Fixed includes that were breaking the build. --- RecastDemo/Source/Sample.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/RecastDemo/Source/Sample.cpp b/RecastDemo/Source/Sample.cpp index 7ee8a11d..0af9efd6 100644 --- a/RecastDemo/Source/Sample.cpp +++ b/RecastDemo/Source/Sample.cpp @@ -16,16 +16,18 @@ // 3. This notice may not be removed or altered from any source distribution. // +#include +#include #include "Sample.h" -#include -#include "DetourCrowd.h" -#include "DetourDebugDraw.h" -#include "DetourNavMesh.h" -#include "DetourNavMeshQuery.h" -#include "imgui.h" #include "InputGeom.h" #include "Recast.h" #include "RecastDebugDraw.h" +#include "DetourDebugDraw.h" +#include "DetourNavMesh.h" +#include "DetourNavMeshQuery.h" +#include "DetourCrowd.h" +#include "imgui.h" +#include "SDL.h" #include "SDL_opengl.h" #ifdef WIN32