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

游戏

开发平台:

Java

  1. /*
  2.  * @(#)OperatorSlot.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. /**
  14.  * Slot to hold an operator
  15.  */
  16. public class OperatorSlot extends DraggingSlot implements Type
  17. {
  18.    static final int WIDTH = 27,
  19.                     HEIGHT = 40;
  20.    public OperatorSlot( int x, int y)
  21.    {
  22.       super( x, y, 0, 0 );
  23.       type = OPERATOR_SLOT;
  24.       width = WIDTH;
  25.       height = HEIGHT;
  26.    } // constructor   
  27.    
  28.    public int getType()
  29.    {
  30.       return OPERATOR;
  31.    } // getType
  32.    
  33. } // OperatorSlot