12 lines
156 B
Java
12 lines
156 B
Java
package Characters;
|
|
|
|
import Entity.Entity;
|
|
|
|
interface IGrabbableCharacter {
|
|
String getGrabbablePart();
|
|
|
|
void moveTo(Entity obj);
|
|
|
|
String getName();
|
|
}
|