📄 keycode.java
字号:
package com.cienet.levi;
/**
* Copyright cienet.levi
*
* Snake.KeyCode
*
* @author cienet
* @create 2008/01/11 13:34:10 - ver1.0
*/
public class KeyCode {
//Direction up
public static final int UP = -1;
//Direction down
public static final int DOWN = -2;
//Direction left
public static final int LEFT = -3;
//Direction right
public static final int RIGHT = -4;
//Function1
public static final int FUNCTION1 = -6;
//Function2
public static final int FUNCTION2 = -7;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -