v0.7.1c: removed android-specific code from several classes in core

This commit is contained in:
Evan Debenham
2019-01-10 20:30:13 -05:00
parent 18f72cd5ac
commit 7dffe6bf23
11 changed files with 38 additions and 33 deletions

View File

@@ -104,6 +104,10 @@ public class SmartTexture extends Texture {
height = bitmap.getHeight();
}
public int getPixel( int x, int y ){
return bitmap.getPixel(x, y);
}
public void reload() {
id = -1;
generate();