java-ascii-game/src/Interactable.java
2024-06-04 16:15:37 +02:00

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();
}