Beispiel #1
0
        protected override void Start()
        {
            base.Start();

            if (reference == null)
            {
                reference = text;
            }
        }
Beispiel #2
0
 private string Append(string text_, string pattern_, Dictionary <string, string> collection_)
 {
     if (collection_.ContainsKey(pattern_))
     {
         var westText = new WestString(text_);
         westText.Color = color;
         return("\n" + westText.FormatPair(pattern_, collection_[pattern_]));
     }
     return(null);
 }