Files
A-Fairytale-Gone-Bad-Briar-…/Assets/Scripts/Framework/Services/Destruction/IDestructible.cs

10 lines
251 B
C#

using Cysharp.Threading.Tasks;
namespace BriarQueen.Framework.Services.Destruction
{
public interface IDestructible
{
UniTask OnPreDestroy(); // Optional: prepare for destruction
UniTask OnDestroyed(); // Final cleanup
}
}