diff options
author | RoyalBlue1 <malte.hoermeyer@web.de> | 2022-07-15 00:41:36 +0200 |
---|---|---|
committer | RoyalBlue1 <malte.hoermeyer@web.de> | 2022-07-15 00:41:36 +0200 |
commit | 1d9b24faf5280db4b57eea42904f24ff4fdd16ba (patch) | |
tree | 558c8c8aa6b3d044f5fd9e17284177f96ba354f3 /Northstar.Client/mod/scripts/vscripts/chat.gnut | |
parent | 88d765b41f4ff94c59fa535d53e708274fa22d26 (diff) | |
parent | 85eb27362bd295a9e1560982a3369a688e13ded0 (diff) | |
download | NorthstarMods-1d9b24faf5280db4b57eea42904f24ff4fdd16ba.tar.gz NorthstarMods-1d9b24faf5280db4b57eea42904f24ff4fdd16ba.zip |
Merge remote-tracking branch 'upsteam/main' into gamemode_fd
Diffstat (limited to 'Northstar.Client/mod/scripts/vscripts/chat.gnut')
-rw-r--r-- | Northstar.Client/mod/scripts/vscripts/chat.gnut | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/chat.gnut b/Northstar.Client/mod/scripts/vscripts/chat.gnut deleted file mode 100644 index ce26434c..00000000 --- a/Northstar.Client/mod/scripts/vscripts/chat.gnut +++ /dev/null @@ -1,18 +0,0 @@ -untyped -globalize_all_functions - -void function Chat_NetworkWriteLine(string text) { - NSChatWriteLine(0, text) -} - -void function Chat_GameWriteLine(string text) { - NSChatWriteLine(1, text) -} - -void function Chat_NetworkWrite(string text) { - NSChatWrite(0, text) -} - -void function Chat_GameWrite(string text) { - NSChatWrite(1, text) -} |