GameHandler.IsControlBattle C# (CSharp) Method

IsControlBattle() public static method

public static IsControlBattle ( ) : bool
return bool
    public static bool IsControlBattle()
    {
        return ControlType.BATTLE.Equals(GameHandler.Instance().currentControl) ||
            (GameHandler.IsControlField() && GameHandler.IsInBattleArea());
    }
GameHandler