I'm literally on fire rn

This commit is contained in:
Miskolczi Richárd
2023-03-24 14:03:09 +01:00
parent b06568fb27
commit 99498ed660
10 changed files with 85 additions and 51 deletions

View File

@@ -8,9 +8,11 @@ namespace Password_Manager
[STAThread]
static void Main()
{
Fields.ListOfProfiles = new ProfileList();
ProfileHandler.ListOfProfiles = new ProfileList();
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
Application.Run(mainForm);
}
public static MainForm mainForm = new MainForm();
}
}