diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-05-23 00:02:58 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-05-23 00:02:58 +0200 |
| commit | 6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c (patch) | |
| tree | 30ff503136f1d41ccbb35d3bb9fa6ab92f1e839a /Scripts/OutputRow.cs | |
| parent | f3c50714834d2d5cb204625c63aaeffb50bef236 (diff) | |
| download | texty-6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c.tar.xz texty-6fe4972aa48a29d0aafee0461ccd6c635ca9ee6c.zip | |
commands: add basic command parser infrastructure
Diffstat (limited to 'Scripts/OutputRow.cs')
| -rw-r--r-- | Scripts/OutputRow.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Scripts/OutputRow.cs b/Scripts/OutputRow.cs index 15a6454..13d9293 100644 --- a/Scripts/OutputRow.cs +++ b/Scripts/OutputRow.cs @@ -11,12 +11,12 @@ namespace Texty.Scripts [Signal] public delegate void OutputTextChanged(string newText); - public Label Input; - public Label Output; - private string _inputText = ""; private string _outputText = ""; + public Label Input; + public Label Output; + [Export] public string InputText { @@ -69,4 +69,4 @@ namespace Texty.Scripts Output } } -}
\ No newline at end of file +}
\ No newline at end of file |
