This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/Entity.cpp
2022-02-05 22:25:20 -05:00

16 lines
202 B
C++

#include "Entity.h"
Entity::Entity(std::shared_ptr<Mesh> _mesh)
{
mesh = _mesh;
}
Transform* Entity::GetTransform()
{
return &transform;
}
std::shared_ptr<Mesh> Entity::GetMesh()
{
return mesh;
}