void Start() { string path = Path.Combine(Application.streamingAssetsPath, fileName); smartReply = new SmartReply(path); // TODO UI }
void Start() { string path = Path.Combine(Application.streamingAssetsPath, fileName); var responses = responseText.text.Split('\n'); smartReply = new SmartReply(path, responses); // TODO add ui smartReply.Invoke("How are you"); }