using System; namespace Syntriax.Engine.Core.Abstract; /// /// Indicates the class implementing it has Assignable fields that are necessary for the engine to work properly. /// public interface IAssignable { /// /// Callback triggered when the 's fields are unassigned and completely ready to recycle. /// Action? OnUnassigned { get; set; } /// /// Unassign 's all fields and make it ready to recycle. /// /// /// , if the fields are unsigned successfully, if not. /// bool Unassign(); }