14 lines
353 B
C#
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; }
|
|
}
|
|
} |