roleplay/client/include/draw.h

16 lines
231 B
C

#ifndef RENDER_H
#define RENDER_H
#include "gpu.h"
#include "ui.h"
#include "hex.h"
VkResult draw_frame(
RenderContext* context,
UIContext* ui,
HexContext* hex,
Camera* offscreen_camera,
double time);
#endif