Files
SPT-Server-Build/Core/Controllers/LocationController.cs
T
2025-01-06 22:32:42 -05:00

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();
}
}