Files
Mindustry/core/src/mindustry/ui/Displayable.java
MEEPofFaith 5cc314672f canWithdraw() + changes to displayable() (#6902)
* `shouldDiplay()` + `canWithdraw()`

* Better implementation of `displayable()`
2022-06-08 09:17:30 -04:00

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);
}