예제 #1
0
파일: ColorText.cs 프로젝트: warmist/dfhack
        //protected:
        public new void add_text(color_value color, string text)
        {
            if (text.Length == 0)
            return;

            if (buffer.Length == 0)
            {
            buffer = text;
            }
            else
            {
            buffer += text;
            }
        }
예제 #2
0
        //protected:
        public new void add_text(color_value color, string text)
        {
            if (text.Length == 0)
            {
                return;
            }

            if (buffer.Length == 0)
            {
                buffer = text;
            }
            else
            {
                buffer += text;
            }
        }
예제 #3
0
파일: ColorText.cs 프로젝트: warmist/dfhack
 public void add_text(color_value color, string text)
 {
     //Debug.Log(text);
     buffer += text;
 }
예제 #4
0
 public void add_text(color_value color, string text)
 {
     Debug.WriteLine(text);
     buffer += text;
 }
예제 #5
0
 public void add_text(color_value color, string text)
 {
     //Debug.Log(text);
     buffer += text;
 }
예제 #6
0
 public void add_text(color_value color, string text)
 {
     Value += text;
 }