AssemblyCSharp.PizzaDefinition.GetGroups C# (CSharp) Méthode

GetGroups() public méthode

public GetGroups ( ) : List
Résultat 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),
            };
        }