aboutsummaryrefslogtreecommitdiffstats
path: root/ui.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-02-16 16:31:08 -0500
committerSam Anthony <sam@samanthony.xyz>2025-02-16 16:31:08 -0500
commit4ffae4aeec2e5cc708f3a13899ad6b280b25b83f (patch)
tree32a94ebef53a1e31965fa5eeab8323114a0532d1 /ui.c
parent9bd3edfb51ac9b975bb02596eebafb2c9069aa36 (diff)
downloadvolute-4ffae4aeec2e5cc708f3a13899ad6b280b25b83f.zip
number field widget
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui.c b/ui.c
new file mode 100644
index 0000000..f44e89d
--- /dev/null
+++ b/ui.c
@@ -0,0 +1,8 @@
+#include "microui.h"
+#include "widget.h"
+#include "ui.h"
+
+void
+init_ui(UI *ui) {
+ init_field(&ui->displacement);
+}