aboutsummaryrefslogtreecommitdiff
path: root/src/mazerator.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-02-13 19:55:53 +0100
committerHampusM <hampus@hampusmat.com>2022-02-13 19:55:53 +0100
commitb0c265ee3d94921f55266a679d3801a4d2b4505b (patch)
treeb489dcbafddafdb05b415e920e9a2ca8524158e6 /src/mazerator.cpp
parent36ce8d5d2c9b3bb9588a2bc1d96ee2678c2b990c (diff)
refactor: move some components to a engine dir
Diffstat (limited to 'src/mazerator.cpp')
-rw-r--r--src/mazerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mazerator.cpp b/src/mazerator.cpp
index a82bbaf..33ef1b1 100644
--- a/src/mazerator.cpp
+++ b/src/mazerator.cpp
@@ -1,8 +1,8 @@
+#include "engine/matrix.hpp"
+#include "engine/vector2.hpp"
#include "getopt.h"
-#include "matrix.hpp"
#include "maze.hpp"
#include "utils.hpp"
-#include "vector2.hpp"
#include <iostream>
#include <memory>
#include <random>