2023-11-23 22:07:49 +03:00
|
|
|
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
|
2024-02-01 12:14:53 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Represents an entity with a name.
|
|
|
|
/// </summary>
|
2023-11-23 22:07:49 +03:00
|
|
|
public interface INameable
|
|
|
|
{
|
2024-02-01 12:14:53 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Event triggered when the name of the entity changes.
|
|
|
|
/// </summary>
|
2024-11-23 23:14:44 +03:00
|
|
|
event OnNameChangedEventHandler? OnNameChanged;
|
2024-02-01 12:14:53 +03:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The name of the entity.
|
|
|
|
/// </summary>
|
2023-11-23 22:07:49 +03:00
|
|
|
string Name { get; set; }
|
2024-07-15 01:13:39 +03:00
|
|
|
|
2024-11-23 23:14:44 +03:00
|
|
|
delegate void OnNameChangedEventHandler(INameable sender, string previousName);
|
2023-11-23 22:07:49 +03:00
|
|
|
}
|