steam-deck-tools/FanControl/Program.cs

23 lines
480 B
C#
Raw Permalink Normal View History

2022-10-15 16:53:24 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LibreHardwareMonitor.Hardware;
using CommonHelpers;
2022-10-15 16:53:24 +02:00
namespace FanControl
2022-12-12 15:08:00 +01:00
{
2022-10-15 16:53:24 +02:00
internal class Program
{
2022-11-11 19:56:08 +01:00
static void Main(string[] args)
{
2022-12-12 15:08:00 +01:00
Instance.WithSentry(() =>
{
ApplicationConfiguration.Initialize();
Application.Run(new FanControlForm());
});
2022-11-11 19:56:08 +01:00
}
2022-10-15 16:53:24 +02:00
}
}