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