Format all files based on clang-format file
This commit is contained in:
@@ -3,16 +3,22 @@
|
||||
namespace Copium
|
||||
{
|
||||
Entity::Entity()
|
||||
: manager{nullptr}, id{INVALID_ENTITY}
|
||||
{}
|
||||
: manager{nullptr},
|
||||
id{INVALID_ENTITY}
|
||||
{
|
||||
}
|
||||
|
||||
Entity::Entity(ECSManager* manager)
|
||||
: manager{manager}, id{INVALID_ENTITY}
|
||||
{}
|
||||
: manager{manager},
|
||||
id{INVALID_ENTITY}
|
||||
{
|
||||
}
|
||||
|
||||
Entity::Entity(ECSManager* manager, EntityId id)
|
||||
: manager{manager}, id{id}
|
||||
{}
|
||||
: manager{manager},
|
||||
id{id}
|
||||
{
|
||||
}
|
||||
|
||||
Entity::operator EntityId() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user