Name: Anonymous 2009-06-02 18:17
I'm writing a simple game in C with ncurses, and there's a problem. I want some things to move (enemies, projectiles) at all time, even while my character is stationary. What I have now is the character moving procedure, then the bullet/enemy moving procedure, one after another, in the main loop, so that the program is waiting for the input that will move the character before moving on to moving the enemies. What's the simplest way to fix this?