From 679f7ab8c29a3a6e1c982e97a2fc76525b2d0dd4 Mon Sep 17 00:00:00 2001 From: Nanogamer7 <45211068+Nanogamer7@users.noreply.github.com> Date: Sat, 27 Jan 2024 18:19:58 +0100 Subject: [PATCH] Fixed inconsistent indentations in ColliderComponent.cpp --- src/ColliderComponent.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ColliderComponent.cpp b/src/ColliderComponent.cpp index 759c0e2..d1c59c0 100644 --- a/src/ColliderComponent.cpp +++ b/src/ColliderComponent.cpp @@ -8,7 +8,7 @@ ColliderComponent::ColliderComponent(const char* tag) { this->tag = tag; - this->hasCollision = true; + this->hasCollision = true; this->hitboxScale = 1; } @@ -41,5 +41,5 @@ void ColliderComponent::update() void ColliderComponent::removeCollision() { - this->hasCollision = false; -} \ No newline at end of file + this->hasCollision = false; +}