com.jtransc.game.canvas.BaseTexture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-media-game Show documentation
Show all versions of jtransc-media-game Show documentation
JVM AOT compiler currently generating Javascript and Haxe, with initial focus on Kotlin and games.
package com.jtransc.game.canvas;
import com.jtransc.media.JTranscRender;
public class BaseTexture {
public final int id;
public final int width;
public final int height;
public BaseTexture(int id, int width, int height) {
this.id = id;
this.width = width;
this.height = height;
}
public void dispose() {
JTranscRender.disposeTexture(id);
}
}