game.longStone Class Reference

A Stone. More...

Inheritance diagram for game.longStone:

Inheritance graph
[legend]
Collaboration diagram for game.longStone:

Collaboration graph
[legend]

List of all members.

Public Member Functions

 longStone (IBlock[][] field, int rowOffset, int colOffset, Color color)


Detailed Description

A Stone.

Author:
Team Solid Sun
See also:
IStone

Constructor & Destructor Documentation

game.longStone.longStone ( IBlock  field[][],
int  rowOffset,
int  colOffset,
Color  color 
)

00118                                                                                       {
00119                 super(field);
00120                 super.blocks = new Block[4];
00121                 super.blocks[0] = new Block(rowOffset + 0, colOffset - 1, color);
00122                 super.blocks[1] = new Block(rowOffset + 0, colOffset + 0, color);
00123                 super.blocks[2] = new Block(rowOffset + 0, colOffset + 1, color);
00124                 super.blocks[3] = new Block(rowOffset + 0, colOffset + 2, color);
00125                 super.turnBlock = 1;
00126                 super.updateField();
00127         }


The documentation for this class was generated from the following file:

Generated on Mon Jul 28 19:03:07 2008 for SolidJavaTetris by  doxygen 1.5.5