AssemblyCSharp.PizzaDefinition.GetGroups C# (CSharp) Метод

GetGroups() публичный Метод

public GetGroups ( ) : List
Результат List
        public List<WeightedValue> GetGroups()
        {
            return new List<WeightedValue>
            {
                new WeightedValue("dough", dough, dough_weight),
                new WeightedValue("sauce", sauce, sauce_weight),
                new WeightedValue("topping", topping, topping_weight),
            };
        }