少年修仙传客户端基础资源
hch
2024-01-19 a19dfb3932f054f6d274e38f602643a9a7b7393e
1
2
3
4
5
6
7
8
9
10
11
12
13
using UnityEditor;
using UnityEngine;
 
public class ClearAllLocalSaveTool
{
 
    [MenuItem("Tools/清除LocalSave")]
    public static void ClearAllLocalSave()
    {
        LocalSave.DeleteAll();
    }
 
}