Files
ZooMatch-GP/Assets/ZooMatch/Define/Const/PlayerPrefsConst.cs
T

11 lines
349 B
C#
Raw Normal View History

2026-06-02 10:26:44 +08:00
using UnityEngine;
namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
public class PlayerPrefsConst
{
public static string IsFaceBookLogin = "IsFaceBookLogin";
public static string FacebookAvatarUrl = "FacebookAvatarUrl";
public static string CachePath = Application.persistentDataPath + "/Cache/CacheLocalPreferences.super";
}
}