using System; using System.Collections.Generic; using DDD.RestaurantOrders; using UnityEngine; namespace DDD { public static class RestaurantManagementSolvers { public static Dictionary TypeToManagementSolver = new() { { RestaurantManagementType.OpenRestaurantMenu, typeof(RestaurantManagementSolver_Menu) }, { RestaurantManagementType.StartRestaurant, typeof(RestaurantManagementSolver_Start) } }; } public class RestaurantManagementSolver : RestaurantSubsystemSolver { protected override Dictionary GetSubsystemSolverTypeMappings() { return RestaurantManagementSolvers.TypeToManagementSolver; } } }