Collapsing Blocks
=================

	This is a simple game where there are 4 columns of blocks that need to be kept 
below a certain level, while a specific number of rows are added to those columns. 
The player will need to eliminate blocks by clicking on patterns of common blocks. 
If two or more of the same colored blocks are connected in a horizontal or
vertical manner they can be eliminated. The goal is to keep all of the columns
of blocks below a certain level until rows left to add is zero. When there are
zero rows left to add you advance to the next level. The player does not need
to eliminate all of the blocks to advance to the next level.

	In levels one and two there are only three different colors of blocks, but
once the player gets to level three there are four different colors of blocks.
As the player moves on to higher levels, the number of rows to be added 
increases, as does the speed that those rows are added to the game block columns.


Gameplay
========

	There are two separate views inside the game: 3D overall view and the side view.
Blocks can ONLY be eliminated by clicking on the patterns in the side view, if
a player clicks in the 3D view nothing will happen. There are four different 
columns: Left, Top, Right, and Bottom. New rows are added in that order. There
are buttons the player can click on to switch between each of the four side views.
The player may also use the keyboard to switch between side views (see Keys).
You will soon discover that using the keyboard with the mouse will be much
easier and more efficient.

Speed Issues
============

'Speed +' -> Increases the speed of rows added
'Speed -' -> Decreases the speed of rows added

Keys
====

s -> Show the Left side view (same as clicking on the 'Left' button).
e -> Show the Top side view (same as clicking on the 'Top' button).
d -> Show the Bottom side view (same as clicking on the 'Bottom' button).
f -> Show the Right side view (same as clicking on the 'Right' button).

q -> Quit the game.
