Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 601 Bytes

MAIN.md

File metadata and controls

27 lines (21 loc) · 601 Bytes

#include "pch.h" #include <Windows.h>

#include "VentanaPrincipal.h" #include "VentanaPlay.h"

using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing;

using namespace MasterMindProyectoFinal;

int main(arraySystem::String^^ args) { Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault(false); VentanaPrincipal vent_principal; Application::Run(% vent_principal);

//juego.Show();
//system("pause");

return 0;

}