package sourcecoded.quantum.client.gui;
import java.util.List;
public class Tooltip {
public List text;
public int x, y;
public Tooltip(List text, int x, int y) {
this.text = text;
this.x = x;
this.y = y;
}
}