diff --git a/project.godot b/project.godot index c93cde6..9d8674f 100644 --- a/project.godot +++ b/project.godot @@ -12,7 +12,7 @@ config_version=5 config/name="TextRPG" run/main_scene="uid://cpbeaf3bpe42v" -config/features=PackedStringArray("4.6", "Forward Plus") +config/features=PackedStringArray("4.6", "C#", "Forward Plus") config/icon="res://icon.svg" [dotnet] diff --git a/scenes/ConsoleUI.cs b/scenes/ConsoleUI.cs new file mode 100644 index 0000000..7f0c210 --- /dev/null +++ b/scenes/ConsoleUI.cs @@ -0,0 +1,36 @@ +using Godot; +using System; + +public partial class ConsoleUI : CanvasLayer +{ + private Label consoleOutput; + private LineEdit consoleInput; + + public override void _Ready() + { + consoleOutput = GetNode