Exemplo n.º 1
0
    public void FightEnd()
    {
        UpEnerge();
        foreach (GroundController gc in allGcs)
        {
            if ((int)gc._groundType != 99)
            {
                gc.FightEnd();
            }
        }

        fightController.FightEnd();
        ChangeStatus(FightStatus.FightEnd);
        if (isResetGround)
        {
            ResetGround();
        }
        else
        {
            NextRound();
        }
    }