#include #include #include "PongController.h" int main(void) { std::cout << "Beenden mit (q)uit" << std::endl; std::cout << "Racket links mit 'w' und 's'" << std::endl; std::cout << "Racket rechts mit 'o' und 'k'" << std::endl; std::cout << "Weiter mit beliebiger Taste...."; getch(); system("cls"); GAMEAREA g; g.xMin = 1; g.xMax = 58; g.yMin = 1; g.yMax = 23; PongController p(g); p.startGame(); return 0; }