summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/creature.hpp2
-rw-r--r--inc/entity.hpp2
-rw-r--r--inc/event.hpp2
-rw-r--r--inc/main.hpp10
-rw-r--r--inc/resource.hpp2
5 files changed, 9 insertions, 9 deletions
diff --git a/inc/creature.hpp b/inc/creature.hpp
index eef0d03..c0e80a7 100644
--- a/inc/creature.hpp
+++ b/inc/creature.hpp
@@ -1,7 +1,7 @@
#ifndef creature_h
#define creature_h
-#include "entity.h"
+#include "entity.hpp"
class Creature: public Entity
{
diff --git a/inc/entity.hpp b/inc/entity.hpp
index 1d16a2c..5ed2e74 100644
--- a/inc/entity.hpp
+++ b/inc/entity.hpp
@@ -1,7 +1,7 @@
#ifndef entity_h
#define entity_h
-#include "window.h"
+#include "window.hpp"
class Entity
{
diff --git a/inc/event.hpp b/inc/event.hpp
index 9ba7eea..e9025f0 100644
--- a/inc/event.hpp
+++ b/inc/event.hpp
@@ -1,7 +1,7 @@
#ifndef event_h
#define event_h
-#include "window.h"
+#include "window.hpp"
class Event
{
diff --git a/inc/main.hpp b/inc/main.hpp
index d026886..cb67ab1 100644
--- a/inc/main.hpp
+++ b/inc/main.hpp
@@ -1,10 +1,10 @@
#ifndef main_h
#define main_h
-#include "window.h"
-#include "entity.h"
-#include "event.h"
-#include "creature.h"
-#include "resource.h"
+#include "window.hpp"
+#include "entity.hpp"
+#include "event.hpp"
+#include "creature.hpp"
+#include "resource.hpp"
#endif
diff --git a/inc/resource.hpp b/inc/resource.hpp
index 463f355..986a03d 100644
--- a/inc/resource.hpp
+++ b/inc/resource.hpp
@@ -1,7 +1,7 @@
#ifndef resource_h
#define resource_h
-#include "entity.h"
+#include "entity.hpp"
class Resource: public Entity
{