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