using System; using System.Collections.Generic; using System.Net.Sockets; using System.Text; using Newtonsoft.Json; namespace RH_Engine { class JSONParser { /// /// parses the given response from the server into strings /// /// the message gotten from the server, without the length prefix /// public static string[] Parse(string msg) { return null; } } }