Esempio n. 1
0
    void CheckEndGameActions(List <string> actions)
    {
        for (int i = 0; i < actions.Count; i++)
        {
            switch (actions[i])
            {
            case "RESUME":
                hudScript.BackToMainMenu();
                break;

            case "QUIT":
                hudScript.Quit();
                break;

            default:
                break;
            }
        }
    }