roleplay/client/include/draw.h

15 lines
226 B
C

#ifndef RENDER_H
#define RENDER_H
#include "gpu.h"
#include "ui.h"
VkResult draw_frame(
RenderContext* context,
UIContext* ui,
GraphicsPipeline* hex_graphics,
VkDeviceAddress world,
double time);
#endif