namespace UnityEngine.AzureSky { public sealed class AzureSettings { public float floatValue; public Color colorValue; public AzureSettings(float floatValue, Color colorValue) { this.floatValue = floatValue; this.colorValue = colorValue; } } }