aboutsummaryrefslogtreecommitdiff
path: root/src/ctrl
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
committervimene <vincent.menegaux@gmail.com>2025-12-10 20:40:42 +0100
commit761604f9e4815e8f4355637ebb46052314cbed86 (patch)
treeb9cd6dde75ebf5897f8e67835522c6411d6ab7cb /src/ctrl
parentc666035bc6a51e4dd76daebefffaf8bbc951977c (diff)
downloadengine-761604f9e4815e8f4355637ebb46052314cbed86.tar.gz
renamed .h to .hpp
Diffstat (limited to 'src/ctrl')
-rw-r--r--src/ctrl/keyboard.hpp (renamed from src/ctrl/keyboard.h)2
-rw-r--r--src/ctrl/mouse.hpp (renamed from src/ctrl/mouse.h)2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ctrl/keyboard.h b/src/ctrl/keyboard.hpp
index 4f3b4ef..c8ab983 100644
--- a/src/ctrl/keyboard.h
+++ b/src/ctrl/keyboard.hpp
@@ -2,7 +2,7 @@
#define CTRL_KEYBOARD_H
#include <cstdint>
-#include "math/vector.h"
+#include "math/vector.hpp"
using engine::math::Vector2;
diff --git a/src/ctrl/mouse.h b/src/ctrl/mouse.hpp
index 521b0a4..8973499 100644
--- a/src/ctrl/mouse.h
+++ b/src/ctrl/mouse.hpp
@@ -1,7 +1,7 @@
#ifndef CTRL_MOUSE_H
#define CTRL_MOUSE_H
-#include "math/vector.h"
+#include "math/vector.hpp"
namespace engine::controllers {