Files
riversong-code-showcase/Source/Riversong/Game/CommonServices/Entities/IEntity.cs
2026-05-21 16:03:55 +02:00

7 lines
115 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IEntity
{
int Id { get; }
}
}