Update for 1.4.5.138, rewrite for it isSnowing field, draw logic sync
This commit is contained in:
parent
f6b31a0ec7
commit
0a7adf2c42
|
@ -24,6 +24,18 @@ namespace StardewModdingAPI.Framework.RewriteFacades
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsSnowingProp
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return WeatherDebrisManager.Instance.isSnowing;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
WeatherDebrisManager.Instance.isSnowing = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static bool IsDebrisWeatherProp
|
public static bool IsDebrisWeatherProp
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
Loading…
Reference in New Issue