Files
WoodDrone/Graph/Telemetry/HexapodControl/HexapodControl.cpp
Dana Markova 0de214c9a1 first commit
2025-07-28 13:21:36 +03:00

19 lines
430 B
C++

// HexapodControl.cpp : main project file.
#include "stdafx.h"
#include "Form1.h"
using namespace HexapodControl;
[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;
}