Recovered Old Source Code

This commit is contained in:
Michał Czyż
2021-04-11 22:35:34 +02:00
parent 8dcb15e2cc
commit 138864a655
132 changed files with 177109 additions and 3288 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Cloud_Power_Manager
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}