Files
HelixJump/Assets/DarkMatter/Code/Core/Contracts/IPoolable.cs
2025-12-17 15:50:28 -08:00

11 lines
143 B
C#

using UnityEngine;
namespace Darkmatter.Core
{
public interface IPoolable
{
void OnSpawn();
void OnDespawn();
}
}