aboutsummaryrefslogtreecommitdiff
path: root/option_set/option_set.gd
diff options
context:
space:
mode:
Diffstat (limited to 'option_set/option_set.gd')
-rw-r--r--option_set/option_set.gd15
1 files changed, 15 insertions, 0 deletions
diff --git a/option_set/option_set.gd b/option_set/option_set.gd
new file mode 100644
index 0000000..e9cac3f
--- /dev/null
+++ b/option_set/option_set.gd
@@ -0,0 +1,15 @@
+extends Control
+class_name OptionSet
+
+var text: String setget set_text, get_text
+
+func set_text(var value: String):
+ input.text = value
+
+func get_text() -> String:
+ return input.text
+
+
+onready var input := get_node("input") as LineEdit
+
+