]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/csqceffects.qc
Net: register all types
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / csqceffects.qc
1 #if defined(CSQC)
2 #elif defined(MENUQC)
3 #elif defined(SVQC)
4     #include "../common/constants.qh"
5 #endif
6
7 void te_csqc_lightningarc(vector from,vector to)
8 {
9         WriteHeader(MSG_BROADCAST, TE_CSQC_ARC);
10
11         WriteCoord(MSG_BROADCAST, from.x);
12         WriteCoord(MSG_BROADCAST, from.y);
13         WriteCoord(MSG_BROADCAST, from.z);
14         WriteCoord(MSG_BROADCAST, to.x);
15         WriteCoord(MSG_BROADCAST, to.y);
16         WriteCoord(MSG_BROADCAST, to.z);
17 }
18