roleplay/client/include/draw.h

15 lines
201 B
C

#ifndef RENDER_H
#define RENDER_H
#include "gpu.h"
#include "ui.h"
#include "hex.h"
VkResult draw_frame(
RenderContext* context,
2024-10-24 20:49:59 -06:00
UIContext* ui,
HexContext* hex,
double time);
#endif