mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
9 lines
576 B
C
9 lines
576 B
C
#pragma once
|
|
|
|
#include "ui.h"
|
|
|
|
ui_view* prompt_create(const char* name, const char* text, u32 rgba, bool option, void* data, void (*update)(ui_view* view, void* data),
|
|
void (*drawTop)(ui_view* view, void* data, float x1, float y1, float x2, float y2),
|
|
void (*onResponse)(ui_view* view, void* data, bool response));
|
|
void prompt_destroy(ui_view* view);
|
|
void* prompt_get_data(ui_view* view); |