Wall.java
上传用户:kikomiki
上传日期:2021-10-31
资源大小:373k
文件大小:0k
源码类别:

游戏

开发平台:

Java

  1. package com.bjsxt.tank;
  2. import java.awt.*;
  3. public class Wall {
  4. int x, y, w, h;
  5. TankClient tc ;
  6. public Wall(int x, int y, int w, int h, TankClient tc) {
  7. this.x = x;
  8. this.y = y;
  9. this.w = w;
  10. this.h = h;
  11. this.tc = tc;
  12. }
  13. public void draw(Graphics g) {
  14. g.fillRect(x, y, w, h);
  15. }
  16. public Rectangle getRect() {
  17. return new Rectangle(x, y, w, h);
  18. }
  19. }