23 lines
467 B
C#
23 lines
467 B
C#
namespace Core.Controllers;
|
|
|
|
public class WeatherController
|
|
{
|
|
/// <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();
|
|
}
|
|
} |