mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 11:50:49 +00:00
- Blood: Define enum values for weapon numbers. Not in use yet.
This commit is contained in:
parent
6fec5d582e
commit
d939602875
1 changed files with 19 additions and 0 deletions
|
@ -449,6 +449,25 @@ enum
|
||||||
kAng360 = 2048,
|
kAng360 = 2048,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Weapon numbers
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
kWeapNone = 0,
|
||||||
|
kWeapPitchFork = 1,
|
||||||
|
kWeapFlareGun = 2,
|
||||||
|
kWeapShotgun = 3,
|
||||||
|
kWeapTommyGun = 4,
|
||||||
|
kWeapNapalm = 5,
|
||||||
|
kWeapDynamite = 6,
|
||||||
|
kWeapSpraycan = 7,
|
||||||
|
kWeapTeslaCannon = 8,
|
||||||
|
kWeapLifeLeech = 9,
|
||||||
|
kWeapVoodooDoll = 10,
|
||||||
|
kWeapProximity = 11,
|
||||||
|
kWeapRemote = 12,
|
||||||
|
kWeapBeast = 13,
|
||||||
|
};
|
||||||
|
|
||||||
// -------------------------------
|
// -------------------------------
|
||||||
|
|
||||||
#pragma pack(push,1)
|
#pragma pack(push,1)
|
||||||
|
|
Loading…
Reference in a new issue