Files
Aeon/Aeon/Entity/CoreComponents/MeshComponent.hpp
Ben Kyd 83758c90b3 commit
2025-07-02 20:41:20 +01:00

17 lines
216 B
C++

#ifndef AEON_ENTITY_CORECOMPONENTS_MESH_H_
#define AEON_ENTITY_CORECOMPONENTS_MESH_H_
#include <Aeon/Rendering/Mesh.hpp>
namespace EC
{
struct MeshComponent
{
MeshHandle Handle;
};
}; // namespace EC
#endif