1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00
vcmi/tools/Obwodziciel/Obwodziciel.cpp
Michał W. Urbańczyk 47cdefb012 * new tool - Obwodziciel
* missing config files for wpasujbud
2008-01-20 12:52:15 +00:00

18 lines
421 B
C++

// Obwodziciel.cpp : main project file.
#include "Form1.h"
using namespace Obwodziciel;
[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 Form1());
return 0;
}