format codebase

This commit is contained in:
aronwk-aaron
2022-07-28 08:39:57 -05:00
parent 4f7aa11067
commit 19e77a38d8
881 changed files with 34700 additions and 38689 deletions

View File

@@ -3,8 +3,7 @@
#include <iostream>
dpShapeBase::dpShapeBase(dpEntity* parentEntity) :
m_ParentEntity(parentEntity)
{
m_ParentEntity(parentEntity) {
}
dpShapeBase::~dpShapeBase() {
@@ -14,4 +13,4 @@ bool dpShapeBase::IsColliding(dpShapeBase* other) {
std::cout << "Base shapes do not have any *shape* to them, and thus cannot be overlapping." << std::endl;
std::cout << "You should be using a shape class inherited from this base class." << std::endl;
return false;
}
}