#pragma once #include "Mesh.h" #include "Transform.h" #include class Entity { public: Entity(std::shared_ptr _mesh); Transform* GetTransform(); std::shared_ptr GetMesh(); private: Transform transform; std::shared_ptr mesh; };