bullet.java
上传用户:jhzhutan
上传日期:2021-03-28
资源大小:374k
文件大小:1k
源码类别:

射击游戏

开发平台:

Java

  1. import java.awt.*;
  2. public class bullet implements Actor{
  3. public int xPos;
  4. public int yPos;
  5. public ClientModel gameModel;
  6. public int direction;
  7. public String Type = "bullet";
  8. public bullet(int xPos, int yPos,  ClientModel gameModel, int direction){
  9. this.xPos = xPos;
  10. this.yPos = yPos;
  11. this.gameModel = gameModel;
  12. this.direction = direction;
  13. }
  14. public void draw(Graphics g){
  15. g.setColor(Color.lightGray);
  16. if(direction == 0 || direction == 1)
  17. g.fillRect(xPos - 1,yPos - 4, 3, 9);
  18. if(direction == 2 || direction == 3)
  19. g.fillRect(xPos - 4,  yPos - 1, 9, 3);
  20. gameModel.removeActor(this);
  21. }
  22. public int getxPos(){
  23. return xPos;
  24. }
  25. public int getyPos(){
  26. return yPos;
  27. }
  28. public String getType(){
  29. return Type;
  30. }
  31. }