SVEN/Kasse/src/BorderInformation.java
2020-07-04 12:24:31 +02:00

12 lines
299 B
Java

public class BorderInformation {
// Randstä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;
}
}