igraphicswrapper.java

来自「一个J2ME编写的牌类游戏」· Java 代码 · 共 13 行

JAVA
13
字号
package de.tsr.jsol.gui;
import javax.microedition.lcdui.*;

public interface IGraphicsWrapper {
	public void drawRect( int x, int y, int w, int h );
	public void drawString( String text, int x, int y, int anchor );
	public void setColor( int r, int g, int b );
	public void clearRect( int x, int y, int w, int h );
	public void fillRect( int x, int y, int w, int h);
	public void setStrokeStyle( int style );
	public void drawImage(Image img, int x, int y, int anchor); 
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?