NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Vehicle/Battery/EBatteryState.cs

14 lines
305 B
C#

namespace Gameplay.Vehicle
{
public static class EBatteryState
{
public const int None = 0;
public const int Idle = 1;
public const int Shoot = 2;
public const int Reload = 3;
public const int Destroyed = 4;
public const int AttackEnd = 5;
}
}