mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 09:30:44 +00:00
gnujpdf - unicode font support
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user