Files

12 lines
161 B
C#
Raw Permalink Normal View History

2022-12-14 18:33:44 +02:00
using System;
using UnityEngine;
[Serializable]
public class ObjectPool
{
2022-12-15 21:13:43 +02:00
public string groupName;
2022-12-14 18:33:44 +02:00
public GameObject prefab;
public int size;
}