?? netprotocol.java
字號(hào):
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
*/
public class NetProtocol
{
private NetProtocol()
{
}
//客戶端發(fā)向服務(wù)器
public static final char LOGIN = 0x0001;
public static final char REQUEST_STARTGAME = 0x0002;
public static final char POST_CARD = 0x0005;
public static final char REJECT_CARD = 0x0006;
//服務(wù)器發(fā)向客戶端
public static final char HASLOGIN = 0x8001;
public static final char STARTGAME_FIRST = 0x8002;
public static final char STARTGAME_LAST = 0x8003;
public static final char OPPO_REJECT = 0x8004;
public static final char OPPO_POSTCARD = 0x8005;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -