steam-deck-tools/CommonHelpers/GlobalConfig.cs
2022-11-15 23:40:54 +01:00

25 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace CommonHelpers
{
public enum FanMode : uint
{
Default = 17374,
SteamOS,
Max
}
public enum OverlayMode : uint
{
FPS = 10032,
Minimal,
Detail,
Full
}
}