diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-09-05 20:35:53 +0200 |
| commit | f20bd89dc4a7bf14a88b1effcaa1887b29314525 (patch) | |
| tree | d114787f68efd2a7d61d95fa9c84e8e5d69a7c11 /Scenes/Game/CommandInputArea.tscn | |
| parent | 1b477b62f8be8c546a35dbd1d2688ebf623c496f (diff) | |
| download | texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.tar.xz texty-f20bd89dc4a7bf14a88b1effcaa1887b29314525.zip | |
gui: split GUI into Terminal components
Diffstat (limited to 'Scenes/Game/CommandInputArea.tscn')
| -rw-r--r-- | Scenes/Game/CommandInputArea.tscn | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Scenes/Game/CommandInputArea.tscn b/Scenes/Game/CommandInputArea.tscn new file mode 100644 index 0000000..b377443 --- /dev/null +++ b/Scenes/Game/CommandInputArea.tscn @@ -0,0 +1,12 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://Scenes/Terminal/InputArea.tscn" type="PackedScene" id=1] +[ext_resource path="res://Scripts/Game/CommandParser.cs" type="Script" id=2] +[ext_resource path="res://Scripts/Game/CommandInputArea.cs" type="Script" id=3] + +[node name="CommandInputArea" instance=ExtResource( 1 )] +script = ExtResource( 3 ) + +[node name="CommandParser" type="Node" parent="." index="2"] +unique_name_in_owner = true +script = ExtResource( 2 ) |
