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;
}