ResourceLoaderPackage/Packages/com.bywaystudios.resourceloader/Runtime/GameFramework/Constant.cs
2025-12-28 23:11:56 +08:00

21 lines
575 B
C#

//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
namespace GameFramework.Resource
{
/// <summary>
/// 资源相关常量。
/// </summary>
internal static class Constant
{
/// <summary>
/// 默认资源加载优先级。
/// </summary>
internal const int DefaultPriority = 0;
}
}