8 lines
140 B
Plaintext
8 lines
140 B
Plaintext
/*QUAKED item_deathball(.3 .3 1) (0 0 0) (32 32 32)
|
|
*/
|
|
void() deathball_touch;
|
|
|
|
void() item_deathball = {
|
|
self.touch = deathball_touch;
|
|
};
|