Files
SPT-Server-Build/Core/Controllers/LocationController.cs
T
2025-01-07 13:00:49 +00:00

28 lines
715 B
C#

using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.Location;
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();
}
}