Sonic 3 & Knuckles, my top favorite game of all is my main focus. Oh how fun it is tossing the fox in the blue, wait for it to drown, wait for the new replacement to come, and repeat it. If it's not that, then it's Super Monkey Ball 2 and getting tossed up so high, the stage itself is but a mere pixel looking straight down.
void BlueWater() {water.color=blue; while(GameRunning) {if (fox.pos == InBlueWater) {fox.air--; FoxDrown(fox.air);} else {fox.air=1800; fox.flags = WantsToGetWet; } WaitFrames(1); }} // My top favorite thing in 2D Sonic (as C)
|