mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 14:41:57 +00:00
8 lines
141 B
C++
8 lines
141 B
C++
|
/*QUAKED item_deathball (.3 .3 1) (0 0 0) (32 32 32)
|
||
|
*/
|
||
|
void() deathball_touch;
|
||
|
|
||
|
void() item_deathball =
|
||
|
{
|
||
|
self.touch = deathball_touch;
|
||
|
};
|