More controller prototypes

This commit is contained in:
Cj
2025-01-06 22:58:14 -05:00
parent 7b752970ff
commit 51bdca38fa
7 changed files with 265 additions and 7 deletions
+18 -1
View File
@@ -2,5 +2,22 @@ namespace Core.Controllers;
public class WeatherController
{
// TODO
/// <summary>
/// Handle client/weather
/// </summary>
/// <returns></returns>
public WeatherData Generate()
{
throw new NotImplementedException();
}
/// <summary>
/// Handle client/localGame/weather
/// </summary>
/// <param name="sessionId"></param>
/// <returns></returns>
public GetLocalWeatherResponseData GenerateLocal(string sessionId)
{
throw new NotImplementedException();
}
}