what-the-bank/sources/org/beyka/tiffbitmapfactory/DecodeArea.java

20 lines
366 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.beyka.tiffbitmapfactory;
/* loaded from: classes6.dex */
public class DecodeArea {
public int height;
public int width;
public int x;
public int y;
public DecodeArea() {
}
public DecodeArea(int i, int i2, int i3, int i4) {
this.x = i;
this.y = i2;
this.width = i3;
this.height = i4;
}
}