#ifndef I_MODEL_H #define I_MODEL_H #include class I_Model { public: virtual void render(VkCommandBuffer commandBuffer) = 0; }; #endif // I_MODEL_H