aboutsummaryrefslogtreecommitdiff
path: root/src/games/snake
diff options
context:
space:
mode:
Diffstat (limited to 'src/games/snake')
-rw-r--r--src/games/snake/Snake.cpp11
-rw-r--r--src/games/snake/Snake.hpp4
2 files changed, 6 insertions, 9 deletions
diff --git a/src/games/snake/Snake.cpp b/src/games/snake/Snake.cpp
index 81de4f0..7dc7f9d 100644
--- a/src/games/snake/Snake.cpp
+++ b/src/games/snake/Snake.cpp
@@ -1,11 +1,8 @@
-#include <games/snake/Snake.hpp>
-#include <renderer/Renderer.hpp>
-#include <imgui.h>
-
+#include "games/snake/Snake.hpp"
+#include "renderer/Renderer.hpp"
+#include "common/defs.hpp"
-// Todo:
-// - gradiant from head to tail
-// - reduce thickness from head to tail
+#include <imgui.h>
std::mt19937 Snake::s_rng{std::random_device{}()};
diff --git a/src/games/snake/Snake.hpp b/src/games/snake/Snake.hpp
index 103255c..25facd1 100644
--- a/src/games/snake/Snake.hpp
+++ b/src/games/snake/Snake.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include <games/Game.hpp>
-#include <common/math.hpp>
+#include "games/Game.hpp"
+#include "common/math.hpp"
#include <random>