fix burst of hope updated sell values for items updated jobs reward increases based on difficulty updated difficulty settings
13 lines
186 B
C#
13 lines
186 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class QuitGame : MonoBehaviour
|
|
{
|
|
|
|
public void Quit()
|
|
{
|
|
Application.Quit();
|
|
}
|
|
}
|