mirror of
https://github.com/coah80/LegacyVulkEdition.git
synced 2026-07-19 15:08:14 +00:00
23 lines
483 B
C++
23 lines
483 B
C++
#pragma once
|
|
|
|
struct nk_context;
|
|
struct nk_font;
|
|
struct nk_user_font;
|
|
struct nk_image;
|
|
|
|
namespace lve { namespace ui {
|
|
|
|
bool initNuklear();
|
|
void shutdownNuklear();
|
|
void nuklearNewFrame();
|
|
void nuklearRender();
|
|
nk_context *getNkContext();
|
|
nk_font *getDefaultFont();
|
|
nk_font *getSmallFont();
|
|
nk_font *getTitleFont();
|
|
struct nk_image loadTexture(const char *path);
|
|
struct nk_image loadTextureWithSize(const char *path, int *outW, int *outH);
|
|
void nuklearHandleResize(int w, int h);
|
|
|
|
}}
|