archive
/
pithos
Archived
1
Fork 0

made the program file contain global references.

This commit is contained in:
Jake Howard 2014-12-30 20:52:40 +00:00
parent 1ef41b568e
commit b2641e9cfa
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@ namespace Pithos
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new unlock());
UL = new unlock();
MW = new mainWindow();
Application.Run(UL);
}
public static unlock UL;
public static mainWindow MW;
}
}