df23868b40
fix: update spawn NPC.
12 lines
254 B
C#
12 lines
254 B
C#
namespace BrewMonster.Scripts
|
|
{
|
|
/// <summary>
|
|
/// Implement this on pooled prefab components that need to reset state between uses.
|
|
/// </summary>
|
|
public interface IPoolable
|
|
{
|
|
void OnSpawn();
|
|
void OnDespawn();
|
|
}
|
|
}
|