Merge remote-tracking branch 'runelite/master' into 2308-merge

This commit is contained in:
Owain van Brakel
2019-08-23 02:31:44 +02:00
30 changed files with 416 additions and 123 deletions

View File

@@ -49,6 +49,7 @@ public interface Actor extends Entity
*
* @return the name
*/
@Nullable
String getName();
/**

View File

@@ -342,6 +342,7 @@ public interface Client extends GameShell
*
* @return the logged in player
*/
@Nullable
Player getLocalPlayer();
/**
@@ -422,6 +423,7 @@ public interface Client extends GameShell
*
* @return the selected tile
*/
@Nullable
Tile getSelectedSceneTile();
/**
@@ -436,6 +438,7 @@ public interface Client extends GameShell
*
* @return the dragged widget, null if not dragging any widget
*/
@Nullable
Widget getDraggedWidget();
/**
@@ -446,6 +449,7 @@ public interface Client extends GameShell
*
* @return the dragged on widget, null if not dragging any widget
*/
@Nullable
Widget getDraggedOnWidget();
/**