This repository has been archived on 2026-05-12. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
ShutdownTimer/ShutdownTimer/Program.cs
2022-12-06 12:38:25 -03:00

18 lines
389 B
C#

using System;
using System.Windows.Forms;
namespace ShutdownTimer
{
// Token: 0x02000003 RID: 3
internal static class Program
{
// Token: 0x0600000F RID: 15 RVA: 0x00002B99 File Offset: 0x00000D99
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Fmain());
}
}
}