mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-02 06:40:21 +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
|
|
}
|
|
}
|