summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/PolyLine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Graphics/PolyLine.cpp')
-rw-r--r--Runtime/Graphics/PolyLine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Runtime/Graphics/PolyLine.cpp b/Runtime/Graphics/PolyLine.cpp
index 24686f9..279a493 100644
--- a/Runtime/Graphics/PolyLine.cpp
+++ b/Runtime/Graphics/PolyLine.cpp
@@ -1,9 +1,9 @@
#include "PolyLine.h"
-#include "../Math/Vector3.h"
#include "Color.h"
+#include "Runtime/Math/Math.h"
struct PolyLineVBOLayout
{
- Internal::Vector3 position;
- Internal::Color32 color;
+ Vector3 position;
+ Color32 color;
};