aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Client/mod/scripts/vscripts/chat.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-04-15 16:08:16 +0100
committerGitHub <noreply@github.com>2022-04-15 16:08:16 +0100
commit0c61ea8d1b62415f25b1e54230195d455269b6aa (patch)
tree7f7043fb3b86a64e483bba3669a9e38481731752 /Northstar.Client/mod/scripts/vscripts/chat.gnut
parentb3693a35f8b856279c6844ad92f9ab61f9fc352a (diff)
downloadNorthstarMods-0c61ea8d1b62415f25b1e54230195d455269b6aa.tar.gz
NorthstarMods-0c61ea8d1b62415f25b1e54230195d455269b6aa.zip
cleanup file structure and code for presence and chat (#292)
* refactor presence and chat * improve spacing in cl_chat
Diffstat (limited to 'Northstar.Client/mod/scripts/vscripts/chat.gnut')
-rw-r--r--Northstar.Client/mod/scripts/vscripts/chat.gnut22
1 files changed, 0 insertions, 22 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/chat.gnut b/Northstar.Client/mod/scripts/vscripts/chat.gnut
deleted file mode 100644
index f5988bb76..000000000
--- a/Northstar.Client/mod/scripts/vscripts/chat.gnut
+++ /dev/null
@@ -1,22 +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)
-}