diff options
author | tom <tom@ground-control> | 2015-05-02 22:51:52 -0500 |
---|---|---|
committer | tom <tom@ground-control> | 2015-05-02 22:51:52 -0500 |
commit | 72004f7f2eb558814b78630b25e23b968ac068ea (patch) | |
tree | ea49127050a1b394a80d179d4a7fa0efe3754304 | |
parent | baa7977e0e325e92c700c47b4adea9082749f1d7 (diff) |
fixed in file naming
-rw-r--r-- | inc/creature.hpp | 2 | ||||
-rw-r--r-- | inc/entity.hpp | 2 | ||||
-rw-r--r-- | inc/event.hpp | 2 | ||||
-rw-r--r-- | inc/main.hpp | 10 | ||||
-rw-r--r-- | inc/resource.hpp | 2 | ||||
-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 |
11 files changed, 15 insertions, 15 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 { 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() { |