mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 09:24:52 +00:00
22 lines
328 B
Java
22 lines
328 B
Java
package gnu.jpdf;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class MyRect {
|
|
|
|
public int xMin;
|
|
public int yMin;
|
|
public int xMax;
|
|
public int yMax;
|
|
|
|
public MyRect(int xMin, int yMin, int xMax, int yMax) {
|
|
this.xMin = xMin;
|
|
this.yMin = yMin;
|
|
this.xMax = xMax;
|
|
this.yMax = yMax;
|
|
}
|
|
|
|
}
|