public static void ReplaceUI(UITextType key, string text)
        {
            var table = TextTranslation.Get().m_table;

            table.theUITable[(int)key] = text;
        }
Example #2
0
 public UIText(UITextType type, string text)
 {
     this.type = type;
     this.text = text;
 }
Example #3
0
 public static void SendText(UITextType type, string text)
 {
     Instance.textToSend.Add(new UIText(type, text));
 }