12 lines
438 B
Java
12 lines
438 B
Java
package game;
|
|
|
|
public class TransparentBox extends Textbox {
|
|
public TransparentBox(int x, int y, int w, int h, String text) {
|
|
super(x, y, w, h, text);
|
|
}
|
|
|
|
protected void drawBackground() {
|
|
// Drawing.drawGradient2Border(this.pos_x, this.pos_y, this.size_x, this.size_y,
|
|
// this.gm.style.field_top & 0x80ffffff, this.gm.style.field_btm & 0x80ffffff, this.gm.style.brdr_top & 0x80ffffff, this.gm.style.brdr_btm & 0x80ffffff);
|
|
}
|
|
}
|