📄 shape0.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 + -