//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 loyalsoft. All rights reserved.
// Homepage: http://www.game7000.com/
// Feedback: http://www.game7000.com/
//------------------------------------------------------------
using System;
using System.Collections.Generic;
namespace GameFramework.ObjectPool
{
internal sealed partial class ObjectPoolManager : GameFrameworkModule, IObjectPoolManager
{
///
/// 对象池。
///
/// 对象类型。
private sealed class ObjectPool : ObjectPoolBase, IObjectPool where T : ObjectBase
{
private readonly GameFrameworkMultiDictionary> m_Objects;
private readonly Dictionary