Files
pgs/Assets/Plugins/MMFeedbacks/MMTools/Tools/ObjectPool/MMObjectPool.cs

13 lines
247 B
C#
Raw Normal View History

2026-02-21 16:58:22 -08:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace MoreMountains.Tools
{
public class MMObjectPool : MonoBehaviour
{
[MMReadOnly]
public List<GameObject> PooledGameObjects;
}
}