initial commit
This commit is contained in:
15
src/Program.cs
Normal file
15
src/Program.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.Windows;
|
||||
|
||||
namespace Memory
|
||||
{
|
||||
internal partial class Program
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main()
|
||||
{
|
||||
Application app = new();
|
||||
MainWindow mainWindow = new();
|
||||
app.Run(mainWindow);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user