9 lines
189 B
Java
9 lines
189 B
Java
package mindustry.ui;
|
|
|
|
import arc.scene.ui.layout.*;
|
|
|
|
/** An interface for things that can be displayed when hovered over. */
|
|
public interface Displayable{
|
|
void display(Table table);
|
|
}
|