// Start is called before the first frame update void Start() { Config config = new Config { errorRecorder = new Recorder() }; ClientEngine.Init(config); TextInfoBridge.Init(); testThread = new Thread(TestMain) { IsBackground = true }; testThread.Start(); }
public static void Init() { Instance = new TextInfoBridge(); }