api: add overhead text changed event and setOverheadText

This commit is contained in:
Magic fTail
2018-12-20 04:31:59 +01:00
committed by Adam
parent cb574a1fb0
commit ee98065735
4 changed files with 63 additions and 0 deletions

View File

@@ -239,4 +239,11 @@ public interface Actor extends Renderable
* @return the overhead text
*/
String getOverheadText();
/**
* Sets the overhead text that is displayed above the actor
*
* @param overheadText the overhead text
*/
void setOverheadText(String overheadText);
}