blob: 55041b96c56753d79bfab3a2c8e5d013828ff9e8 (
plain)
1
2
3
4
5
6
7
8
|
package cc.polyfrost.oneconfig.gui.elements;
public class ModUpdateCard extends BasicElement {
public ModUpdateCard(int width, int height) { // TODO
super(width, height, true);
}
}
|