kerosene/remappedSrc/pm/j4/petroleum/util/data/ButtonInformation.java

33 lines
474 B
Java
Raw Normal View History

2020-12-20 04:19:55 +00:00
package pm.j4.kerosene.util.data;
2020-12-19 23:30:50 +00:00
/**
* The type Button information.
*/
public class ButtonInformation {
/**
* The X.
*/
public double x;
/**
* The Y.
*/
public double y;
/**
* The Open.
*/
public boolean open;
/**
* Instantiates a new Button information.
*
* @param x the x
* @param y the y
* @param open the open
*/
public ButtonInformation(double x, double y, boolean open) {
this.x = x;
this.y = y;
this.open = open;
}
}