mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
27 lines
640 B
C#
27 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
public class ConfigGraphicsSetting
|
|
{
|
|
public int RecommendResolutionX;
|
|
|
|
public int RecommendResolutionY;
|
|
|
|
[NonSerialized]
|
|
public Dictionary<ResolutionQualityGrade, int> ResolutionPercentage = new Dictionary<ResolutionQualityGrade, int>();
|
|
|
|
public ResolutionQualityGrade ResolutionQuality;
|
|
|
|
[NonSerialized]
|
|
public Dictionary<PostEffectQualityGrade, int> PostFxGradeBufferSize = new Dictionary<PostEffectQualityGrade, int>();
|
|
|
|
public int TargetFrameRate;
|
|
|
|
public float ContrastDelta;
|
|
|
|
public ConfigGraphicsVolatileSetting VolatileSetting;
|
|
}
|
|
}
|