refactor: Removed Duplicate Interface Declaration
This commit is contained in:
parent
e725a4e89c
commit
1b3f40be5f
|
@ -3,7 +3,7 @@ namespace Syntriax.Engine.Core.Abstract;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a behaviour that any object in the game might use to interact with itself or other objects.
|
/// Represents a behaviour that any object in the game might use to interact with itself or other objects.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IBehaviour : IEntity, IAssignableBehaviourController, IAssignableStateEnable, IInitialize
|
public interface IBehaviour : IEntity, IAssignableBehaviourController, IAssignableStateEnable
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Event triggered when the priority of the <see cref="IBehaviour"/> changes.
|
/// Event triggered when the priority of the <see cref="IBehaviour"/> changes.
|
||||||
|
|
Loading…
Reference in New Issue