LPKeyMask.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
J2ME
开发平台:
Java
- /**
- * <p>Title: lipeng</p>
- * <p>Description:
- * You cannot remove this copyright and notice.
- * You cannot use this file without the express permission of the author.
- * All Rights Reserved</p>
- * <p>Copyright: lizhenpeng (c) 2004</p>
- * <p>Company: LP&P</p>
- * @author lizhenpeng
- * @version 1.0.0
- * <p>
- * Revise History
- * </p>
- */
- package lipeng;
- public class LPKeyMask
- {
- public static final int MASK_KEY_LEFT = 0x0001;
- public static final int MASK_KEY_LEFT_FLAG = 0x0100;
- public static final int MASK_KEY_RIGHT = 0x0002;
- public static final int MASK_KEY_RIGHT_FLAG = 0x0200;
- public static final int MASK_KEY_UP = 0x0004;
- public static final int MASK_KEY_UP_FLAG = 0x0400;
- public static final int MASK_KEY_DOWN = 0x0008;
- public static final int MASK_KEY_DOWN_FLAG = 0x0800;
- public static final int MASK_KEY_OK = 0x0010;
- public static final int MASK_KEY_OK_FLAG = 0x1000;
- }