⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 animate.java

📁 月球人的遊戲喔 AMD S3000+ 64Bit $2770 華碩 K8N4-E (PCI-E) $3100 華碩 N6200 TC256/128MBTOP $1890 BNEQ 1640
💻 JAVA
字号:


import javax.microedition.lcdui.*;
import javax.microedition.lcdui.game.* ;

public class Animate extends Actor {

    public  TiledLayer 	bg;
    public  Goods       jump,shoot;

	public Animate(Image img,int w, int h,int x,int y)
	{
		super(img,w,h,x,y); 
	         
	}
	

	public void setBg(TiledLayer bg)
	{
		this.bg=bg;
 	}
 	
 	public void setJump(Goods j)
	{
		this.jump=j;
 	}
 	
 	public void setShoot(Goods s){
 		this.shoot=s;
 	}
 	
 	public boolean collGood(Goods g)
 	{
    	   if(collidesWith(g,false))
	       	  return true;
	       	  
	       return false;     
	}
	
	
}	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -