mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
25 lines
398 B
C#
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
|
|||
|
|
}
|
|||
|
|
}
|