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

📄 shape0.java

📁 Java 开发的俄罗斯方块游戏
💻 JAVA
字号:
//第0个游戏块
public class Shape0 extends Shape {
	public Shape0(){
		table = Table.mytable;
		shape = setShape();
	}
	
	private Coordinate[] setShape(){
		Coordinate [] coor = new Coordinate[1];
		coor[0] = new Coordinate();
		coor[0].x = 0;coor[0].y = 0;
		return coor;
	}
}

⌨️ 快捷键说明

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