mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-24 17:50:15 +00:00
16 lines
182 B
C#
16 lines
182 B
C#
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// 资源加载状态
|
|
/// </summary>
|
|
public enum EAssetStates
|
|
{
|
|
None = 0,
|
|
CheckBundle,
|
|
Loading,
|
|
Checking,
|
|
Success,
|
|
Fail,
|
|
}
|
|
} |