⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 igraphicswrapper.java

📁 手机游戏 JSol prototype J2ME源代码+详细注释
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -