aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Client/mod/scripts/vscripts/client/cl_chat.gnut
blob: 3a43f3125e0248cc50d6b725615cd262453af5ba (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 )
}