11 lines
143 B
C#
11 lines
143 B
C#
using UnityEngine;
|
|
|
|
namespace Darkmatter.Core
|
|
{
|
|
public interface IPoolable
|
|
{
|
|
void OnSpawn();
|
|
void OnDespawn();
|
|
}
|
|
}
|