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

📄 userlist.java

📁 手机游戏
💻 JAVA
字号:
package cardclient;

/**
 * <p>Title: CardClient</p>
 *
 * <p>Description: lizhenpeng</p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: LP&P</p>
 *
 * @author lipeng
 * @version 1.0
 */
import javax.microedition.lcdui.*;
public class UserList extends List
{
  public UserList()
  {
    super("用户列表",List.IMPLICIT);
    this.addCommand(MainGame.inst.commandBegin);
    this.setCommandListener(MainGame.inst);
    for(int i=0;i<GameManager.inst.userList.length;i++)
    {
      append(GameManager.inst.userList[i],null);
    }
  }
}

⌨️ 快捷键说明

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