diff options
| author | TheEdgeNK <trey6979@gmail.com> | 2018-09-01 01:27:41 -0400 |
|---|---|---|
| committer | TheEdgeNK <trey6979@gmail.com> | 2018-09-01 01:27:41 -0400 |
| commit | 269f6d0f4cbf556da4e4154143aa85fbf0448429 (patch) | |
| tree | e73ea6f5189fb91fe67ae23648ed5a23a4e93110 /PortEngine/ChatAPI.cs | |
| parent | fb69cc80fc9e22549915f2a0905323f145e23374 (diff) | |
| download | Project-Silicon-269f6d0f4cbf556da4e4154143aa85fbf0448429.tar.gz Project-Silicon-269f6d0f4cbf556da4e4154143aa85fbf0448429.tar.bz2 Project-Silicon-269f6d0f4cbf556da4e4154143aa85fbf0448429.zip | |
hybrid config mode // removed feature
Diffstat (limited to 'PortEngine/ChatAPI.cs')
| -rw-r--r-- | PortEngine/ChatAPI.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/PortEngine/ChatAPI.cs b/PortEngine/ChatAPI.cs index 9c06bfd..cfbc7cf 100644 --- a/PortEngine/ChatAPI.cs +++ b/PortEngine/ChatAPI.cs @@ -19,6 +19,7 @@ **************************************************************************/ using System; using System.Collections.Generic; +using System.Timers; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -29,8 +30,10 @@ namespace PortEngine { public class ChatAPI { + public static void SendMessage(TextBox txtPending, TextBox txtDestination) { +; txtDestination.AppendText("<" + Properties.Settings.Default.userDisplayName + "> " + txtPending.Text + Environment.NewLine); txtPending.Clear(); } |
