mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
22 lines
380 B
C#
22 lines
380 B
C#
using FullInspector;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class ConfigRealTimeWeather : BaseScriptableObject
|
|
{
|
|
public int maxRetryTime = 5;
|
|
|
|
public float retryInterval = 10f;
|
|
|
|
public float weatherInfoPeriod = 3600f;
|
|
|
|
public ConfigWeatherSiteUsage siteUsage;
|
|
|
|
public string defaultConfigName;
|
|
|
|
public int defaultSceneId;
|
|
|
|
public ConfigWeatherMatchItem[] weatherMatch;
|
|
}
|
|
}
|