namespace Core.Callbacks; public class GameCallbacks { public NullResponseData VersionValidata(string url, VersionValidaterequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GameStart(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GameLogout(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetGameConfig(string url, GameEmptyCrcRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetServer(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData ValidateGameVersion(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GameKeepalive(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetVersion(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }