MIF_E31222586/Assets/Editor/DeleteSave.cs

13 lines
254 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
public class DeleteSave : MonoBehaviour
{
[MenuItem("Window/Delete All Save")]
static void DeleteAllSave() {
PlayerPrefs.DeleteAll();
}
}