FemboyBanking.NET/FemboyBanking/FemboyBanking.cpp

19 lines
450 B
C++
Raw Normal View History

2020-08-18 18:42:57 -07:00
// FemboyBanking.cpp : main project file.
#include "stdafx.h"
2020-08-19 21:29:55 -07:00
#include "EthAddressPrompt.h"
2020-08-18 18:42:57 -07:00
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
2020-08-19 21:29:55 -07:00
Application::Run(gcnew EthAddressPrompt());
2020-08-18 18:42:57 -07:00
return 0;
}