www.pudn.com > j2me_Mario.rar > LPKeyMask.java


/** 
 * 

Title: lipeng

*

Description: * You cannot remove this copyright and notice. * You cannot use this file without the express permission of the author. * All Rights Reserved

*

Copyright: lizhenpeng (c) 2004

*

Company: LP&P

* @author lizhenpeng * @version 1.0.0 *

* Revise History *

*/ 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; }