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