namespace Revitalize.Framework.Environment
{
///
/// Deals with configurations for darker night.
///
public class DarkerNightConfig
{
///
/// Is darker night enabled?
///
public bool Enabled;
///
/// The intensity for how dark it gets at night.
///
public float DarknessIntensity;
public DarkerNightConfig()
{
this.Enabled = true;
this.DarknessIntensity = .9f;
}
}
}