AssemblyCSharp.PizzaDefinition.GetGroups C# (CSharp) Method

GetGroups() public method

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