More prototypes

This commit is contained in:
Cj
2025-01-06 22:32:42 -05:00
parent f3aa6e09d4
commit 7b752970ff
3 changed files with 220 additions and 3 deletions
+20 -1
View File
@@ -2,5 +2,24 @@ namespace Core.Controllers;
public class LocationController
{
// TODO
/// <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();
}
}