Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/WeatherInfoProvider_LocalHost.cs
2025-08-13 09:26:42 +08:00

16 lines
262 B
C#

namespace MoleMole
{
public class WeatherInfoProvider_LocalHost : WeatherInfoProvider
{
protected override string GetUrl()
{
return "http://localhost/";
}
protected override WeatherInfo ParseWeatherInfo(string content)
{
return null;
}
}
}