diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/creature.cpp | 2 | ||||
-rw-r--r-- | src/entity.cpp | 2 | ||||
-rw-r--r-- | src/event.cpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 | ||||
-rw-r--r-- | src/resource.cpp | 2 | ||||
-rw-r--r-- | src/window.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/creature.cpp b/src/creature.cpp index d958d09..aeff472 100644 --- a/src/creature.cpp +++ b/src/creature.cpp @@ -1,4 +1,4 @@ -#include "creature.h" +#include "creature.hpp" Creature::Creature(Window m, std::string s) { diff --git a/src/entity.cpp b/src/entity.cpp index 03accd9..f7e8857 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -1,4 +1,4 @@ -#include "entity.h" +#include "entity.hpp" void Entity::Place() { diff --git a/src/event.cpp b/src/event.cpp index 369edbc..ba7fda8 100644 --- a/src/event.cpp +++ b/src/event.cpp @@ -1,4 +1,4 @@ -#include "event.h" +#include "event.hpp" Event::Event() { diff --git a/src/main.cpp b/src/main.cpp index 1f78c65..de1351e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,4 @@ -#include "main.h"
+#include "main.hpp"
int main()
{
diff --git a/src/resource.cpp b/src/resource.cpp index 06c7a04..7f39493 100644 --- a/src/resource.cpp +++ b/src/resource.cpp @@ -1,4 +1,4 @@ -#include "resource.h" +#include "resource.hpp" Resource::Resource(Window m, std::string s) { diff --git a/src/window.cpp b/src/window.cpp index 2ebc9c5..8d6a566 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -1,4 +1,4 @@ -#include "window.h" +#include "window.hpp" Window::Window() { |