initial commit

This commit is contained in:
KäseToatz
2024-10-29 17:39:40 +01:00
commit d1bfecbfef
7 changed files with 101 additions and 0 deletions

15
src/Program.cs Normal file
View 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);
}
}
}