|
using AsteroidGame.ScriptableObjects;
|
|
using UnityEngine;
|
|
|
|
namespace AsteroidGame.Entities
|
|
{
|
|
[CreateAssetMenu(fileName = "newEntityBaseRuntimeSet", menuName = "RuntimeSet/EntityBase")]
|
|
public class SoEntityBaseRuntimeSet : SRuntimeSet<EntityBase>
|
|
{
|
|
}
|
|
} |