package com.google.code.tretris.common;
/**
* Implements Well Known Constants
*/
public class WKC {
/**
* The standard Tetris game board width.
*/
public static final int BOARD_WIDTH = 10;
/**
* The standard Tetris game board height PLUS two 'hidden' rows. The first
* two rows [0] and [1] should not be displayed, they are the spawning
* ground for new Tetrominoes.
*/
public static final int BOARD_HEIGHT = 24;
/**
* The time in millis between heartbeats.
*/
public static final long HEARTBEAT_SLEEP_TIME = 1000;
public static final int TEXT_CLIENT_IPC_UID = 1 ;
public static final int GRAPHICAL_CLIENT_IPC_UID = 2 ;
}
|