refactor: delegate names updated to have no "On" prefix
This commit is contained in:
@@ -8,7 +8,7 @@ public interface IHasEntity : IAssignable
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="IEntity"/> value has has been assigned a new value.
|
||||
/// </summary>
|
||||
event OnEntityAssignedEventHandler? OnEntityAssigned;
|
||||
event EntityAssignedEventHandler? OnEntityAssigned;
|
||||
|
||||
/// <inheritdoc cref="IEntity" />
|
||||
IEntity Entity { get; }
|
||||
@@ -22,5 +22,5 @@ public interface IHasEntity : IAssignable
|
||||
/// </returns>
|
||||
bool Assign(IEntity entity);
|
||||
|
||||
delegate void OnEntityAssignedEventHandler(IHasEntity sender);
|
||||
delegate void EntityAssignedEventHandler(IHasEntity sender);
|
||||
}
|
||||
|
Reference in New Issue
Block a user