0
0
mirror of https://github.com/Nimac0/SDL_Minigame synced 2026-01-12 07:53:43 +00:00

Fixed inconsistent indentations in ColliderComponent.cpp

This commit is contained in:
Nanogamer7 2024-01-27 18:19:58 +01:00 committed by GitHub
parent 7fbcda681c
commit 679f7ab8c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}
this->hasCollision = false;
}