uREPL.CompletionInfo.CompletionInfo C# (CSharp) Method

CompletionInfo() public method

public CompletionInfo ( string prefix, string code, string mark, Color32 color, string description = "" ) : System
prefix string
code string
mark string
color UnityEngine.Color32
description string
return System
        public CompletionInfo(
		string prefix,
		string code,
		string mark,
		Color32 color,
		string description = "")
        {
            this.prefix = prefix;
            this.code = code;
            this.mark = mark;
            this.color = color;
            this.description = description;
        }
CompletionInfo