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