using System; namespace Syntriax.Engine.Core.Abstract; public interface INameable { Action? OnNameChanged { get; set; } string Name { get; set; } }