roleplay/client/include/draw.h

14 lines
227 B
C

#ifndef RENDER_H
#define RENDER_H
#include "gpu.h"
#include "ui.h"
VkResult draw_frame(
RenderContext* context,
UIContextStorage* ui_context,
UIContainerStorage* containers,
uint32_t container_count);
#endif