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

17 lines
722 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
namespace GameFramework.Resource
{
/// <summary>
/// 使用可更新模式并应用资源包资源完成时的回调函数。
/// </summary>
/// <param name="resourcePackPath">应用的资源包路径。</param>
/// <param name="result">应用资源包资源结果,全部成功为 true否则为 false。</param>
public delegate void ApplyResourcesCompleteCallback(string resourcePackPath, bool result);
}