#pragma once
#include "../utils/common.h"

class Renderer {
public:
    Renderer();

    /**
     * @brief
     *
     * @param o_colors
     * @param layeredColors
     */
    void render(sptr<CudaArray<glm::vec4>> o_colors, sptr<CudaArray<glm::vec4>> layeredColors);
};