Files
Goatgarien_BAKKA-Editor/BAKKA Editor/MyForm.cpp
T
2022-03-14 15:44:59 -07:00

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);
}