Xonotic
matrix.qh
Go to the documentation of this file.
1 #pragma once
2 
3 string autocvar_matrix_server = "http://matrix.org";
4 string matrix_user;
6 string matrix_room;
7 
8 void MX_Messages(string from);
9 void MX_Nick(string name);
10 void MX_Join(string room);
11 void MX_Sync(string since);
12 void MX_Typing(bool state);
13 void MX_Say(string body);
14 void MX_Leave(string room);
15 void MX_Forget(string room);
16 
17 var void(int buf, string ancestor) MX_Handle;
void MX_Join(string room)
Definition: matrix.qc:115
float state
Definition: subs.qh:32
void MX_Say(string body)
Definition: matrix.qc:187
string matrix_access_token
Definition: matrix.qh:5
void MX_Messages(string from)
Definition: matrix.qc:34
void MX_Sync(string since)
Definition: matrix.qc:70
void MX_Leave(string room)
Definition: matrix.qc:125
string matrix_room
Definition: matrix.qh:6
string matrix_user
Definition: matrix.qh:4
void MX_Nick(string name)
Definition: matrix.qc:6
void MX_Typing(bool state)
Definition: matrix.qc:159
string autocvar_matrix_server
Definition: matrix.qh:3
void MX_Forget(string room)
Definition: matrix.qc:135
var void(int buf, string ancestor) MX_Handle