This site has been archived and made available for preservation purposes. No edits can be made.

Death

[top]Definition

Code cpp:
enum VAULTCPP(class) Death VAULTCPP(: int8_t)
{
	None = -1,
	Explosion = 0,
	Gun = 2,
	BluntWeapon = 3,
	HandToHand = 4,
	ObjectImpact = 5,
	Poison = 6,
	Radiation = 7,
};
Code c:
typedef int8_t Death;
Code c:
const Death: {
	None = -1,
	Explosion = 0,
	Gun = 2,
	BluntWeapon = 3,
	HandToHand = 4,
	ObjectImpact = 5,
	Poison = 6,
	Radiation = 7,
}