Files
riversong-code-showcase/Source/Riversong/Game/Rendering/RenderingInitializationGameSystem.cs
2026-05-21 16:04:49 +02:00

16 lines
482 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
[GameSystemGroup(typeof(EarlyGameSystemGroup))]
public class RenderingInitializationGameSystem : GameSystem, IServiceProvider
{
public RenderingInitializationGameSystem(IServiceLocator serviceLocator) : base(serviceLocator)
{
}
public void RegisterServices(IServiceLocator serviceLocator)
{
serviceLocator.RegisterService(new WorldRenderingState());
}
}
}