steam-deck-tools/FanControl/Program.cs

19 lines
354 B
C#
Raw 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
{
internal class Program
{
2022-11-11 19:56:08 +01:00
static void Main(string[] args)
{
2022-11-12 13:56:15 +01:00
Application.Run(new FanControlForm());
2022-11-11 19:56:08 +01:00
}
2022-10-15 16:53:24 +02:00
}
}