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