deviceAccessLayer/main.cpp

14 lines
181 B
C++

#include "application.h"
#include <windows.h>
int main(int argc, char *argv[])
{
if (argc > 1)
{
FreeConsole();
}
zsy::Application::run();
return 0;
}