aboutsummaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/src/res.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/game/src/res.c b/src/game/src/res.c
index c41af47..da07f96 100644
--- a/src/game/src/res.c
+++ b/src/game/src/res.c
@@ -5,6 +5,7 @@
#include <gfx.h>
#include <gui/bar.h>
#include <gui/button.h>
+#include <gui/line_edit.h>
#include <gui/rounded_rect.h>
#include <resource.h>
#include <terrain.h>
@@ -246,6 +247,33 @@ static const struct container c[] =
.sprite = &gui_button_sprites[GUI_BUTTON_RIGHT]
}
},
+
+ {
+ .path = "line_edit_left",
+ .type = CONTAINER_TYPE_SPRITE,
+ .data =
+ {
+ .sprite = &gui_line_edit_sprites[GUI_LINE_EDIT_LEFT]
+ }
+ },
+
+ {
+ .path = "line_edit_mid",
+ .type = CONTAINER_TYPE_SPRITE,
+ .data =
+ {
+ .sprite = &gui_line_edit_sprites[GUI_LINE_EDIT_MID]
+ }
+ },
+
+ {
+ .path = "line_edit_right",
+ .type = CONTAINER_TYPE_SPRITE,
+ .data =
+ {
+ .sprite = &gui_line_edit_sprites[GUI_LINE_EDIT_RIGHT]
+ }
+ }
};
static bool init;