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

7 lines
163 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IServiceProvider
{
void RegisterServices(IServiceLocator serviceLocator);
}
}