Files
coding-game/include/components/mesh.h
2025-10-08 18:17:47 +02:00

11 lines
188 B
C++

#ifndef COMPONENTS_MESH_H_
#define COMPONENTS_MESH_H_
#include <memory>
#include "renderer/wavefront.h"
struct mesh {
std::unique_ptr<Object> object;
};
#endif // COMPONENTS_MESH_H_