16 lines
324 B
C
16 lines
324 B
C
#ifndef PIXELDEFENSE_UI_WIDGETS_H
|
|
#define PIXELDEFENSE_UI_WIDGETS_H
|
|
|
|
#include <breeze.h>
|
|
#include <raygui.h>
|
|
|
|
extern BzUI *UI; // defined in main.c
|
|
|
|
void uiPushDivParentPercentage(f32 xPercent, f32 yPercent);
|
|
|
|
void uiLargeLabel(const char *txt);
|
|
|
|
bool uiLargeTextButton(const char *txt);
|
|
|
|
#endif //PIXELDEFENSE_UI_WIDGETS_H
|