ProjectDDD/Assets/_DDD/_Scripts/RestaurantEvent/Solvers/RestaurantCooks/RestaurantCookSolver.cs

20 lines
603 B
C#
Raw Normal View History

2025-08-27 04:05:08 +00:00
using System;
using System.Collections.Generic;
namespace DDD
{
public static class RestaurantCookSolvers
{
public static Dictionary<RestaurantCookType, Type> TypeToManagementSolver = new()
{
{ RestaurantCookType.OpenCookUi, typeof(RestaurantCookSolver_OpenCookUi) },
};
}
public class RestaurantCookSolver : RestaurantSubsystemSolver<RestaurantCookType>
{
protected override Dictionary<RestaurantCookType, Type> GetSubsystemSolverTypeMappings()
{
return RestaurantCookSolvers.TypeToManagementSolver;
}
}
}