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

📄 selnew.java

📁 华容道游戏源码
💻 JAVA
字号:
package huaroad;// Download by http://www.codefans.netimport javax.microedition.lcdui.*;// 选择布局public class SelNew extends List implements CommandListener{	private HRGame pgame;	private Display display;	private Quitable winQuit;	public SelNew(HRGame paragame)	{		super("请选择布局", IMPLICIT);		pgame = paragame;		append("横刀立马", null);	// 添加布局名称		append("过五关", null);		append("水泄不通", null);		append("小燕出巢", null);		append("进在咫尺", null);		append("左右夹击", null);		append("重兵挡道", null);	}	public void activate(Display disp, Quitable quitable)   // 激活显示本类	{		winQuit = quitable;		display = disp;		display.setCurrent(this);	// 设置当前显示本类		setCommandListener(this);	// 设置菜单响应	}	public void commandAction(Command command, Displayable displayable)   // 菜单响应	{		pgame.activate(display, winQuit);	//进入游戏画面		pgame.newGame(this);	}}

⌨️ 快捷键说明

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