少年修仙传客户端基础资源
hch
2024-02-28 c2a1eb72b3a98c76609bea69ac7b07ecd8c5e991
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();
    }
 
}