thunderbrew/src/gx/Draw.hpp
2023-01-02 13:17:18 -06:00

20 lines
319 B
C++

#ifndef GX_DRAW_HPP
#define GX_DRAW_HPP
#include "gx/CGxBatch.hpp"
#include "gx/Types.hpp"
#include <cstdint>
class C3Vector;
class CImVector;
void GxDraw(CGxBatch*, int32_t);
void GxSceneClear(uint32_t, CImVector);
void GxScenePresent(void);
void GxuFlushDrawList(EGxuDrawListCategory, const C3Vector&);
#endif