From ff0d41c301d2b12d14917b6f79374d78075a591c Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 5 Feb 2022 22:25:20 -0500 Subject: [PATCH] create entity class --- Entity.cpp | 16 ++++++++++++++++ Entity.h | 18 ++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 Entity.cpp create mode 100644 Entity.h diff --git a/Entity.cpp b/Entity.cpp new file mode 100644 index 0000000..0d3835a --- /dev/null +++ b/Entity.cpp @@ -0,0 +1,16 @@ +#include "Entity.h" + +Entity::Entity(std::shared_ptr _mesh) +{ + mesh = _mesh; +} + +Transform* Entity::GetTransform() +{ + return &transform; +} + +std::shared_ptr Entity::GetMesh() +{ + return mesh; +} diff --git a/Entity.h b/Entity.h new file mode 100644 index 0000000..ea780c9 --- /dev/null +++ b/Entity.h @@ -0,0 +1,18 @@ +#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; +};