mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-04 13:57:39 +00:00
Move FanMode and OverlayMode to GlobalConfig
This commit is contained in:
parent
39fb809e01
commit
604a7e5b0b
8 changed files with 66 additions and 52 deletions
24
CommonHelpers/GlobalConfig.cs
Normal file
24
CommonHelpers/GlobalConfig.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue