11 lines
295 B
C#
11 lines
295 B
C#
namespace RobotNet10.RobotApp.Services.Simulation;
|
|
|
|
public static class SimulationExtensions
|
|
{
|
|
public static IServiceCollection AddRobotSimulation(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<SimulationVisualization>();
|
|
return services;
|
|
}
|
|
}
|