Files
Civilization/Lib/Civilization.Core/Interfaces/IEntity.cs
2025-08-08 15:37:34 +02:00

7 lines
115 B
C#

namespace Civilization.Core.Interfaces;
public interface IEntity
{
Guid Id { get; }
int OwnerId { get; }
}