mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
47cdefb012
* missing config files for wpasujbud
18 lines
421 B
C++
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;
|
|
}
|