blob: 5868efef7fcc23bfe15fe1815327cc2eb68450dd (
plain)
1
2
3
4
5
6
7
8
9
|
#include <raylib.h>
#ifndef UI_ELEMENTS_H
#define UI_ELEMENTS_H
void DrawRecBordered(Rectangle rec, Color bg, Color border_color, int border_width);
void DrawTextInRec(Rectangle rec, char *text, Font *font, int height, Color color, float padding, int *scroll);
#endif // UI_ELEMENTS_H
|