mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-19 02:12:23 +00:00
Requires a cutting edge version of fteqcc... Older versions have bugs and stuff. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3045 fc73d0e0-1445-4013-8a0c-d673dee63da5
8 lines
No EOL
141 B
C++
8 lines
No EOL
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;
|
|
}; |