mirror of
https://github.com/2006-Scape/Parabot-317-API-Minified.git
synced 2026-07-04 16:49:10 +00:00
20 lines
312 B
Java
20 lines
312 B
Java
package org.rev317.min.accessors;
|
|
|
|
public interface Character {
|
|
|
|
public int getX();
|
|
|
|
public int getY();
|
|
|
|
public int getAnimation();
|
|
|
|
public int getLoopCycleStatus();
|
|
|
|
public int getCurrentHealth();
|
|
|
|
public int getMaxHealth();
|
|
|
|
public int getInteractingEntity();
|
|
}
|
|
|