1
0
Fork 0
SVEN/QR/src/BorderInformation.java

12 lines
299 B
Java
Raw Normal View History

2020-07-04 10:24:16 +00:00
public class BorderInformation {
// Randst<73>rke in Pixeln
public float BorderWidth;
// Erstes schwarzes Pixel in der linken oberen Ecke
public Pair firstBlackPixel;
public BorderInformation(float width, Pair firstBlack) {
BorderWidth = width;
firstBlackPixel = firstBlack;
}
}