mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
18 lines
428 B
C#
18 lines
428 B
C#
namespace MoleMole
|
|
{
|
|
public static class MainUIData
|
|
{
|
|
public const string GENERAL_DIALOG_PREFAB_PATH = "UI/UIToolkits/GeneralDialogPanel";
|
|
|
|
public const int UI_PAGE_LRU_CACHE_CAPACITY = 10;
|
|
|
|
public const int DIALOG_LRU_CACHE_CAPACITY = 10;
|
|
|
|
public const int WIDGET_LRU_CACHE_CAPACITY = 5;
|
|
|
|
public const int LOAD_PAGE_DIALOG_TIMES_LIMIT_BEFORE_UNLOAD_RESOUCE = 10;
|
|
|
|
public static bool USE_VIEW_CACHING = true;
|
|
}
|
|
}
|