hellbound/Assets/Sources/Feel/MMTools/Tools/MMObjectPool/MMObjectPool.cs

13 lines
259 B
C#
Raw Permalink Normal View History

2021-11-26 11:16:25 +03:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace MoreMountains.Tools
{
public class MMObjectPool : MonoBehaviour
{
[MMReadOnly]
public List<GameObject> PooledGameObjects;
}
}