Files
2026-03-04 10:03:45 +08:00

16 lines
265 B
C#

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;
}
}
}