mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-20 18:52:31 +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;
|
||
|
};
|