docs: Core IAssignable

This commit is contained in:
2024-02-01 12:06:31 +03:00
parent 3e9c393817
commit 4ce9c8e0d9
7 changed files with 13 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ namespace Syntriax.Engine.Core.Abstract;
public interface IAssignable
{
/// <summary>
/// Callback triggered when the <see cref="IAssignable"/>'s fields are unassigned and completely ready to recycle.
/// Event triggered when the <see cref="IAssignable"/>'s fields are unassigned and completely ready to recycle.
/// </summary>
Action<IAssignable>? OnUnassigned { get; set; }