while( true ) {
kb.poll();
if( kb.keyDown( KeyEvent.VK_Q ) ) {
break;
}
if( kb.keyDown( KeyEvent.VK_A ) ) {
Point2D tempPoint = new Point2D( rand.nextInt( window.getWidth() ), rand.nextInt( window.getHeight() ) );
Size2D tempSize = new Size2D( rand.nextInt( 30 ) + 21, rand.nextInt( 30 ) + 21 );
GraphicsObject obj2 = new JavaSprite( "fenceright",
tempPoint, tempSize );
objList2.add( obj2 );