28 lines
657 B
C#
28 lines
657 B
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
namespace cfg
|
|
{
|
|
/// <summary>
|
|
/// 场景明暗程度
|
|
/// </summary>
|
|
public enum SceneBrightness
|
|
{
|
|
/// <summary>
|
|
/// 暗场景
|
|
/// </summary>
|
|
Dark = 0,
|
|
/// <summary>
|
|
/// 亮场景
|
|
/// </summary>
|
|
Bright = 1,
|
|
}
|
|
|
|
}
|