I'm having an issue with my program reading a return key input while running the program via command line. I'd like any events at the start of the program or something similar, just to block the return key from being handled as an event when It was really just to get the program running.
Is this possible?
EDIT: I just realized WHY this is specifically happening, it's because I currently check the return key on KeyReleased instead of KeyPressed, I guess I'll just switch over to that and my problem is solved!