FemboyBanking.NET/FemboyBanking/FemboyBanking.cpp

19 lines
426 B
C++
Raw Normal View History

2020-08-18 18:42:57 -07:00
// FemboyBanking.cpp : main project file.
#include "stdafx.h"
#include "Main.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 Main());
return 0;
}