Skip to content
Snippets Groups Projects
Commit f6de800c authored by Barna Réka Emese's avatar Barna Réka Emese
Browse files

Upload New File

parent abf4bc44
Branches
No related tags found
No related merge requests found
main.cpp 0 → 100644
#include "sajatalkalmazas.hpp"
#include <iostream>
int main()
{
try
{
std::cout << "15x15-os Amoba jatek inditasa...\n";
SajatAlkalmazas alkalmazas(800, 650); // Nagyobb ablak a 15x15-ös táblához
std::cout << "Esemenyhurok inditasa...\n";
alkalmazas.esemenyhurok();
std::cout << "Program vege.\n";
}
catch (const std::exception& e)
{
std::cerr << "Hiba: " << e.what() << std::endl;
return 1;
}
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment