mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:55:12 +00:00
gnujpdf - unicode font support
This commit is contained in:
20
libsrc/gnujpdf/src/gnu/jpdf/MyRect.java
Normal file
20
libsrc/gnujpdf/src/gnu/jpdf/MyRect.java
Normal file
@@ -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