aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Client/mod/scripts/vscripts/chat.gnut
blob: f5988bb7685227ffb74a69bc60626b0e507b8a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)
}