Syntriax.Engine/Engine.Core/Abstract/Assignable/IAssignableBehaviourControl...

27 lines
1.1 KiB
C#
Raw Normal View History

2023-11-23 22:07:49 +03:00
namespace Syntriax.Engine.Core.Abstract;
/// <summary>
/// Indicates the object is an <see cref="IAssignable"/> with an assignable <see cref="IBehaviourController"/> field.
/// </summary>
public interface IAssignableBehaviourController : IAssignable
{
/// <summary>
2024-02-01 12:06:31 +03:00
/// Event triggered when the <see cref="IBehaviourController"/> value has has been assigned a new value.
2023-11-23 22:07:49 +03:00
/// </summary>
2024-07-15 01:13:39 +03:00
event OnBehaviourControllerAssignedDelegate? OnBehaviourControllerAssigned;
2023-11-23 22:07:49 +03:00
/// <inheritdoc cref="IBehaviourController" />
IBehaviourController BehaviourController { get; }
/// <summary>
2024-02-01 12:06:31 +03:00
/// Assign a value to the <see cref="IBehaviourController"/> field of this object.
2023-11-23 22:07:49 +03:00
/// </summary>
/// <param name="behaviourController">New <see cref="IBehaviourController"/> to assign.</param>
/// <returns>
/// <see cref="true"/>, if the value given assigned successfully assigned, <see cref="false"/> if not.
/// </returns>
bool Assign(IBehaviourController behaviourController);
2024-07-15 01:13:39 +03:00
delegate void OnBehaviourControllerAssignedDelegate(IAssignableBehaviourController sender);
2023-11-23 22:07:49 +03:00
}