#ifndef ENGINE_INCLUDE_COMPONENTS_MESH_RENDERABLE_H_ #define ENGINE_INCLUDE_COMPONENTS_MESH_RENDERABLE_H_ #include #include "resources/material.h" #include "resources/mesh.h" namespace engine { struct MeshRenderableComponent { std::shared_ptr mesh; std::shared_ptr material; }; } // namespace engine #endif