X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2Fworld.cpp;h=f648baad45c082da5139066bf7fed8f68e6a1334;hb=78a290bd642c5578c9dd17481c8164ff50889ca2;hp=e659322aa333c753fd953a718fc0c18b7eace276;hpb=ccd6e7001572808400b9cb9bc91f9bedcf28a1ad;p=blank.git diff --git a/src/world/world.cpp b/src/world/world.cpp index e659322..f648baa 100644 --- a/src/world/world.cpp +++ b/src/world/world.cpp @@ -167,7 +167,6 @@ Player *World::AddPlayer(const std::string &name) { } Entity &entity = AddEntity(); entity.Name(name); - // TODO: load from save file here entity.Bounds({ { -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f } }); entity.WorldCollidable(true); entity.Position(config.spawn); @@ -187,7 +186,6 @@ Player *World::AddPlayer(const std::string &name, std::uint32_t id) { return nullptr; } entity->Name(name); - // TODO: load from save file here entity->Bounds({ { -0.5f, -0.5f, -0.5f }, { 0.5f, 0.5f, 0.5f } }); entity->WorldCollidable(true); entity->Position(config.spawn);