using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Game; using Core.Models.Eft.Hideout; using Core.Models.Eft.HttpResponse; using Core.Models.Spt.Server; namespace Core.Callbacks; public class DataCallbacks { public DataCallbacks() { } /// /// Handle client/settings /// /// /// /// /// public GetBodyResponseData GetSettings(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/globals /// /// /// /// /// public GetBodyResponseData GetGlobals(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/items /// /// /// /// /// public string GetTemplateItems(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/handbook/templates /// /// /// /// /// public GetBodyResponseData GetTemplateHandbook(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/customization /// /// /// /// /// public GetBodyResponseData> GetTemplateSuits(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/account/customization /// /// /// /// /// public GetBodyResponseData> GetTemplateCharacter(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/hideout/settings /// /// /// /// /// public GetBodyResponseData GetHideoutSettings(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetHideoutAreas(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetHideoutProduction(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/languages /// /// /// /// /// public GetBodyResponseData> GetLocalesLanguages(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/menu/locale /// /// /// /// /// public GetBodyResponseData GetLocalesMenu(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/locale /// /// /// /// /// public string GetLocalesGlobal(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/hideout/qte/list /// /// /// /// /// public string GetQteList(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/items/prices/ /// /// /// /// /// public GetBodyResponseData GetItemPrices(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }