13 lines
293 B
C#
13 lines
293 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace AlicizaX
|
||
|
|
{
|
||
|
|
[CreateAssetMenu(fileName = "PoolConfig", menuName = "GameplaySystem/PoolConfig", order = 10)]
|
||
|
|
public class PoolConfigScriptableObject : ScriptableObject
|
||
|
|
{
|
||
|
|
public List<PoolConfig> configs;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|