Hanoi_pan.java~2~
上传用户:qiye11114
上传日期:2010-01-20
资源大小:126k
文件大小:0k
源码类别:

其他智力游戏

开发平台:

Java

  1. package hanoi;
  2. /**
  3.  * <p>Title: Hanoi Pan</p>
  4.  *
  5.  * <p>Description: </p>
  6.  *
  7.  * <p>Copyright: Copyright (c) 2005</p>
  8.  *
  9.  * <p>Company: </p>
  10.  *
  11.  * @author not attributable
  12.  * @version 1.0
  13.  */
  14. public class Hanoi_pan {
  15.     public int x,y;
  16.     public int width,height;
  17.     public Hanoi_pan(int arg_x,int arg_y,int arg_width,int arg_height) {
  18.         x=arg_x;
  19.         y=arg_y;
  20.         width=arg_width;
  21.         height=arg_height;
  22.     }
  23. }