private void QuitGame() { if (Application.isEditor) { io.Log("Quitting game"); } Application.Quit(); }
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"); }