#ifndef ENGINE_INCLUDE_COMPONENTS_RENDERABLE_H_ #define ENGINE_INCLUDE_COMPONENTS_RENDERABLE_H_ #include #include "resources/material.h" #include "resources/mesh.h" namespace engine { struct RenderableComponent { std::shared_ptr mesh; std::shared_ptr material; bool shown = true; }; } // namespace engine #endif