Core/src/main/java/eu/univento/core/api/gui/hologram/components/ComponentPosition.java

25 lines
430 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.api.gui.hologram.components;
import lombok.Data;
/**
* @author joethei
* @version 0.1
*/
@Data
public class ComponentPosition {
private double x;
private double y;
public ComponentPosition(double x, double y) {
this.x = x;
this.y = y;
}
}