PlayingStatus.java
上传用户:njled888
上传日期:2007-01-07
资源大小:29k
文件大小:1k
源码类别:

游戏

开发平台:

Java

  1. /*
  2.  * @(#)PlayingStatus.java Version 1.0 98/03/12
  3.  * 
  4.  * Copyright (c) 1998 by Huahai Yang
  5.  * 
  6.  * Use at your own risk. I do not guarantee the fitness of this 
  7.  * software for any purpose, and I do not accept responsibility for 
  8.  * any damage you do to yourself or others by using this software.
  9.  * This file may be distributed freely, provided its contents 
  10.  * are not tampered with in any way.
  11.  *
  12.  */
  13. import java.util.Observable;
  14. public class PlayingStatus extends ObservableInteger
  15. {
  16.    static final int DEALED = 1,
  17.                     WAITING = 0,
  18.                     ROUND_OVER = 2;
  19.    
  20.    public PlayingStatus()
  21.    {
  22.       super(ROUND_OVER);
  23.    } // 0 param constructor
  24.    
  25.    public PlayingStatus(int status)
  26.    {
  27.       super(status);
  28.    } // 1 param constructor
  29. } // PlayingStatus