Files
2026-02-21 17:04:05 -08:00

12 lines
225 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace MoreMountains.Tools
{
public class MMObjectPool : MonoBehaviour
{
[MMReadOnly]
public List<GameObject> PooledGameObjects;
}
}