whoa/src/ui/simple/CSimpleRender.hpp
2025-12-06 21:31:48 -06:00

18 lines
341 B
C++

#ifndef UI_SIMPLE_C_SIMPLE_RENDER_HPP
#define UI_SIMPLE_C_SIMPLE_RENDER_HPP
class CGxShader;
class CRenderBatch;
class CSimpleRender {
public:
// Static variables
static CGxShader* s_vertexShader[];
// Static functions
static void DrawBatch(CRenderBatch* batch);
static void Init();
};
#endif