api: add player id accessor

This commit is contained in:
Adam
2022-05-25 22:15:34 -04:00
parent 95988db47f
commit 307459e071

View File

@@ -32,6 +32,13 @@ import javax.annotation.Nullable;
*/ */
public interface Player extends Actor public interface Player extends Actor
{ {
/**
* Get the ID of the player
*
* @return
*/
int getId();
@Override @Override
int getCombatLevel(); int getCombatLevel();