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,
UIContext* ui,
HexContext* hex,
double time);
#endif