I am running the game on a linux machine and there is no way to exit out. My hypothesis is that it is because getch is wrapped around a try block so it captures any ctrl c interrupts and returns without any issue. Thus, ignoring the ctrl c interrupts.
Can y'all fix it or should I submit a pull request instead?
I am running the game on a linux machine and there is no way to exit out. My hypothesis is that it is because
getch
is wrapped around atry
block so it captures any ctrl c interrupts and returns without any issue. Thus, ignoring the ctrl c interrupts. Can y'all fix it or should I submit a pull request instead?