I am making a game in Unity C# where request is made to external server every 10 seconds about the player's playing state. The server responses with newline-delimited JSON, for example.
{"gamestate":"play","score":120,"compare":"ascending","compitPosition":"5/13"}
{"gamestate":"play","score":80,"compare":"descending","compitPosition":"9/13"}
{"gamestate":"pause","score":70,"compare":"descending","compitPosition":"8/13"}
Is there a way to parse such newline-delimited json so that I can get individual data or convert it to proper JSON format to parse and get the data ?