diff --git a/gamecube.h b/includes/gamecube.h similarity index 100% rename from gamecube.h rename to includes/gamecube.h diff --git a/gamematrix.h b/includes/gamematrix.h similarity index 100% rename from gamematrix.h rename to includes/gamematrix.h diff --git a/gamecube.cpp b/src/gamecube.cpp similarity index 98% rename from gamecube.cpp rename to src/gamecube.cpp index 6848d50..914b606 100644 --- a/gamecube.cpp +++ b/src/gamecube.cpp @@ -1,4 +1,4 @@ -#include "gamecube.h" +#include "../includes/gamecube.h" gamecube::gamecube(const Vec3 &pos, Color col) : position(pos), color(col) {} diff --git a/main.cpp b/src/main.cpp similarity index 99% rename from main.cpp rename to src/main.cpp index 287251d..8957343 100644 --- a/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -#include "gamecube.h" +#include "../includes/gamecube.h" #include #include