14 lines
280 B
C++
14 lines
280 B
C++
#include "MyForm.h"
|
|
|
|
using namespace System;
|
|
using namespace System::Windows::Forms;
|
|
[STAThread]
|
|
|
|
void main(array<String^>^ args)
|
|
{
|
|
Application::EnableVisualStyles();
|
|
Application::SetCompatibleTextRenderingDefault(false);
|
|
BAKKAEditor::MyForm form;
|
|
Application::Run(% form);
|
|
}
|