mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-16 07:31:23 +00:00
936ce5a866
# Conflicts: # platform/Windows/exhumed.vcxproj # platform/Windows/exhumed.vcxproj.filters
13 lines
272 B
C
13 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
|