25 lines
645 B
C#
25 lines
645 B
C#
namespace Core.Controllers;
|
|
|
|
public class LocationController
|
|
{
|
|
/// <summary>
|
|
/// Handle client/locations
|
|
/// Get all maps base location properties without loot data
|
|
/// </summary>
|
|
/// <param name="sessionId">Players Id</param>
|
|
/// <returns>LocationsGenerateAllResponse</returns>
|
|
public LocationsGenerateAllResponse GenerateAll(string sessionId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle client/airdrop/loot
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
public GetAirDropLootResponse GetAirDropLoot(GetAirDropLootRequest request)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |