MacGyver.Recipe.Recipe C# (CSharp) Method

Recipe() public method

public Recipe ( ) : System
return System
        public Recipe()
        {
            number = 0;
            name = null;
            exp = 0;
            script = null;
            desc = null;
            view = new List<StringNum>();
            craft = new List<StringNum>();
            items = new List<StringNum>();
            tools = new List<StringNum>();
            output = new List<StringNum>();
        }