Ejemplo n.º 1
0
    private void QuitGame()
    {
        if (Application.isEditor)
        {
            io.Log("Quitting game");
        }

        Application.Quit();
    }
Ejemplo n.º 2
0
    public void ShowHelp()
    {
        IOController io = IOController.io;

        io.Log("recipes - list all available recipes");
        io.Log("show [item] - shows the recipe for that item, if available");
        io.Log("make [ammount] [item] - makes the specified ammount of the specified item");
        io.Log("inventory [arguments] - inventory action");
        io.Log("equipment [arguments] - equipment action");
        io.Log("quit - quits the crafting station");
    }