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

14 lines
353 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public abstract class GameSystem : IGameSystem
{
protected GameSystem(IServiceLocator serviceLocator)
{
ServiceLocator = serviceLocator;
}
public virtual string Name => GetType().Name;
protected IServiceLocator ServiceLocator { get; }
}
}