Files
Tungdv df23868b40 feat: Add prefabs pooling manager.
fix: update spawn NPC.
2026-05-06 15:33:28 +07:00

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();
}
}