From 9edcaef680f4db888c31755400be9c1e82c8fd3d Mon Sep 17 00:00:00 2001 From: sippeangelo Date: Mon, 3 Mar 2014 20:45:50 +0100 Subject: [PATCH] Renamed transform component file --- .../Components/{Transform.h => TransformComponent.h} | 0 Escape-the-Dawn/Escape-the-Dawn.vcxproj | 2 +- Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters | 10 +++------- Escape-the-Dawn/Systems/CollisionSystem.h | 2 +- 4 files changed, 5 insertions(+), 9 deletions(-) rename Escape-the-Dawn/Components/{Transform.h => TransformComponent.h} (100%) diff --git a/Escape-the-Dawn/Components/Transform.h b/Escape-the-Dawn/Components/TransformComponent.h similarity index 100% rename from Escape-the-Dawn/Components/Transform.h rename to Escape-the-Dawn/Components/TransformComponent.h diff --git a/Escape-the-Dawn/Escape-the-Dawn.vcxproj b/Escape-the-Dawn/Escape-the-Dawn.vcxproj index df41510..65fac93 100644 --- a/Escape-the-Dawn/Escape-the-Dawn.vcxproj +++ b/Escape-the-Dawn/Escape-the-Dawn.vcxproj @@ -103,7 +103,7 @@ - + diff --git a/Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters b/Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters index 3fdf496..edf544f 100644 --- a/Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters +++ b/Escape-the-Dawn/Escape-the-Dawn.vcxproj.filters @@ -25,9 +25,7 @@ Systems - - Source Files - + @@ -59,12 +57,10 @@ Systems - + + Components - - Header Files - diff --git a/Escape-the-Dawn/Systems/CollisionSystem.h b/Escape-the-Dawn/Systems/CollisionSystem.h index c5c1bdd..008115a 100644 --- a/Escape-the-Dawn/Systems/CollisionSystem.h +++ b/Escape-the-Dawn/Systems/CollisionSystem.h @@ -4,7 +4,7 @@ #include "System.h" #include "logging.h" -#include "Components/Transform.h" +#include "Components/TransformComponent.h" namespace Systems