namespace Core.Controllers;
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();
}
}