Files
SPT-Server-Build/Core/Controllers/WeatherController.cs
T
2025-01-11 18:14:39 +00:00

29 lines
625 B
C#

using Core.Annotations;
using Core.Models.Eft.Weather;
using Core.Models.Spt.Weather;
namespace Core.Controllers;
[Injectable]
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();
}
}