// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "EntityTilePosition.hpp" using namespace Dawn; const glm::vec3 EntityTilePosition::toWorldSpace() { return glm::vec3( this->x, this->y, this->z ); }