]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/target/location.qc
Merge branch 'master' into sev/luma_revisions
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / target / location.qc
1 #ifdef SVQC
2 void spawnfunc_target_location()
3 {
4     self.classname = "target_location";
5     // location name in netname
6     // eventually support: count, teamgame selectors, line of sight?
7 }
8
9 void spawnfunc_info_location()
10 {
11     self.classname = "target_location";
12     self.message = self.netname;
13 }
14 #endif