WKC.java :  » Graphics-3D-2D-OpenGL » tretris » com » google » code » tretris » common » Android Open Source

Android Open Source » Graphics 3D 2D OpenGL » tretris 
tretris » com » google » code » tretris » common » WKC.java
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 ;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.