?? gameevent.java
字號:
package eatbean.event;import java.util.EventObject;/** * Title: 吃豆子 * Description: 小游戲 * Copyright: Copyright (c) 2002 * Company: Raindrop * @author 一無所有 * @version 1.0 */public class GameEvent extends EventObject { public static final int MSG_OBJECT_EAT = 1; public static final int MSG_ACTOR_EAT = 2; public static final int MSG_STATION_DONE = 3; private int msgId = -1; public GameEvent(Object source, int msgId) { super(source); this.msgId = msgId; } public int getMsgId() { return msgId; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -