mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 14:41:57 +00:00
15 lines
222 B
C++
15 lines
222 B
C++
|
|
void() jctrig =
|
|
{
|
|
dprint ("here\n\n");
|
|
lightstyle(0, "az");
|
|
};
|
|
|
|
/*QUAKED trigger_jctest (.5 .5 .5) ?
|
|
*/
|
|
void() trigger_jctest =
|
|
{
|
|
setsize (self, self.mins, self.maxs);
|
|
self.solid = SOLID_EDGE;
|
|
self.touch = jctrig;
|
|
};
|