2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-26 05:25:35 +00:00
metaforce/Runtime/Weapon/WeaponCommon.hpp
2017-08-19 19:23:22 -10:00

30 lines
497 B
C++

#ifndef __URDE_WEAPONCOMMON_HPP__
#define __URDE_WEAPONCOMMON_HPP__
#include "RetroTypes.hpp"
#include "DataSpec/DNACommon/Tweaks/ITweakPlayerGun.hpp"
namespace urde
{
enum class EWeaponType
{
None = -1,
Power = 0,
Ice = 1,
Wave = 2,
Plasma = 3,
Bomb = 4,
PowerBomb = 5,
Missile = 6,
BoostBall = 7,
Phazon = 8,
AI = 9,
PoisonWater = 10,
Lava = 11,
Hot = 12,
Unused1 = 13,
OrangePhazon = 14
};
}
#endif // __URDE_WEAPONCOMMON_HPP__