//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
namespace GameFramework.Resource
{
///
/// 资源更新全部完成事件。
///
public sealed class ResourceUpdateAllCompleteEventArgs : GameFrameworkEventArgs
{
///
/// 初始化资源更新全部完成事件的新实例。
///
public ResourceUpdateAllCompleteEventArgs()
{
}
///
/// 创建资源更新全部完成事件。
///
/// 创建的资源更新全部完成事件。
public static ResourceUpdateAllCompleteEventArgs Create()
{
return ReferencePool.Acquire();
}
///
/// 清理资源更新全部完成事件。
///
public override void Clear()
{
}
}
}