13 lines
234 B
C#
13 lines
234 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class DebugTools : MonoBehaviour
|
||
|
{
|
||
|
[ContextMenu("Delete saves")]
|
||
|
private void DeleteSaves()
|
||
|
{
|
||
|
PlayerPrefs.DeleteAll();
|
||
|
}
|
||
|
}
|