19 lines
450 B
C++
19 lines
450 B
C++
// FemboyBanking.cpp : main project file.
|
|
|
|
#include "stdafx.h"
|
|
#include "EthAddressPrompt.h"
|
|
|
|
using namespace FemboyBanking;
|
|
|
|
[STAThreadAttribute]
|
|
int main(array<System::String ^> ^args)
|
|
{
|
|
// Enabling Windows XP visual effects before any controls are created
|
|
Application::EnableVisualStyles();
|
|
Application::SetCompatibleTextRenderingDefault(false);
|
|
|
|
// Create the main window and run it
|
|
Application::Run(gcnew EthAddressPrompt());
|
|
return 0;
|
|
}
|