16 lines
265 B
C#
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;
|
|
}
|
|
}
|
|
}
|