mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
23 lines
480 B
C#
23 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using LibreHardwareMonitor.Hardware;
|
|
using CommonHelpers;
|
|
|
|
namespace FanControl
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Instance.WithSentry(() =>
|
|
{
|
|
ApplicationConfiguration.Initialize();
|
|
Application.Run(new FanControlForm());
|
|
});
|
|
}
|
|
}
|
|
}
|