Dawn/src/dawnrpg/component/entity/EntityTilePosition.cpp
2024-09-11 10:04:54 -05:00

16 lines
309 B
C++

// 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
);
}