Files
riversong-code-showcase/Source/Engine/Core/IGameSystem.cs
2026-05-21 16:04:49 +02:00

7 lines
131 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IGameSystem
{
public string Name { get; }
}
}