8 lines
228 B
Java
8 lines
228 B
Java
public interface Interactable {
|
|
/**
|
|
* <p>This is the implementation of interact we use to interact with all entities</p>
|
|
* @param player The main player which always interacts
|
|
*/
|
|
public void interact();
|
|
}
|