mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-06 16:30:47 +00:00
14 lines
272 B
C
14 lines
272 B
C
|
|
||
|
#ifndef __grenade_h__
|
||
|
#define __grenade_h__
|
||
|
|
||
|
#define kMaxGrenades 50
|
||
|
|
||
|
void InitGrenades();
|
||
|
int BuildGrenade(int nPlayer);
|
||
|
void DestroyGrenade(short nGrenade);
|
||
|
int ThrowGrenade(short nPlayer, int edx, int ebx, int ecx, int push1);
|
||
|
void FuncGrenade(int, int, int);
|
||
|
|
||
|
#endif
|