using System.Collections; using System.Collections.Generic; using UnityEngine; public class DebugTools : MonoBehaviour { [ContextMenu("Delete saves")] private void DeleteSaves() { PlayerPrefs.DeleteAll(); } }