using Core.Annotations; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Location; namespace Core.Controllers; [Injectable] public class LocationController { /// /// Handle client/locations /// Get all maps base location properties without loot data /// /// Players Id /// LocationsGenerateAllResponse public LocationsGenerateAllResponse GenerateAll(string sessionId) { throw new NotImplementedException(); } /// /// Handle client/airdrop/loot /// /// /// public GetAirdropLootResponse GetAirDropLoot(GetAirdropLootRequest request) { throw new NotImplementedException(); } }