updated namespaces

This commit is contained in:
Lavius Motileng
2020-03-09 22:06:05 -07:00
parent 59a2415a0d
commit 8f02cbc234
20 changed files with 36 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SettingsMain
{
public class Program
{
[System.STAThreadAttribute()]
public static void Main()
{
using (new SettingsUI.App())
{
SettingsMain.App app = new SettingsMain.App();
app.InitializeComponent();
app.Run();
}
}
}
}