I'm programming my first Android Game ever and I'm trying to figure out the best way to handle inputs.
Should I handle inputs outright or put them in a queue of some sort and handle them with an updateInputs() method?
Also, where should I put the code for handling inputs? Should it be inside my SurfaceView object or inside of the thread that handles drawing and physics?
Thanks!