Space-Smash-Out/Assets/FORGE3D/PoolManager/F3DPoolManagerDB.cs

15 lines
305 B
C#

using UnityEngine;
using System.Collections.Generic;
using System;
namespace FORGE3D
{
[Serializable]
public class F3DPoolManagerDB : ScriptableObject
{
public List<string> poolsName;
public List<F3DPoolContainer> pools;
public string namer = "default";
}
}