{ BlockTypes - Block type constants for PuzzleDrop }
unit BlockTypes;

interface

const
  BLOCK_NULL  = 0;
  BLOCK_CLEAR = 1;
  RED1   = 2;
  RED2   = 3;
  RED3   = 4;
  GREEN1 = 5;
  GREEN2 = 6;
  GREEN3 = 7;
  BLUE1  = 8;
  BLUE2  = 9;
  BLUE3  = 10;
  BLOCK_MATCH = 11;

  GRID_W = 20;
  GRID_H = 22;
  GRID_SIZE = 440;

  NUM_BLOCK_TYPES = 9;
  FIRST_COLOR = 2;
  LAST_COLOR  = 10;

implementation

end.