#region Copyright RenGuiYou. All rights reserved. //===================================================== // NeatlyFrameWork // Author: RenGuiyou // Feedback: mailto:750539605@qq.com //===================================================== #endregion namespace Neatly { public class LoaderConfig { //常驻内存资源 public static string[] PersistentAssets = { "ui_atlas_tp_emoji.unity3d" }; //登录时加载 public static string[] InLoginAssets = { }; public static bool CheckPersistent(string path) { for (int i = 0; i < PersistentAssets.Length; i++) { if (path == PersistentAssets[i]) return true; } return false; } } }