Beispiel #1
0
        public Argument(ScriptBase parent, string name, string type, PassingType pass, bool is_array) : base(parent, name, type, is_array)
        {
            this.passingType = pass;
            parent.AddArgument(this);

            this.documentation = new ArgumentDoc(this);
        }
Beispiel #2
0
        public Argument(ScriptBase parent, string name, string type) : base(parent, name, type)
        {
            this.passingType = PassingType.Value;
            parent.AddArgument(this);

            this.documentation = new ArgumentDoc(this);
        }