package com.jonathan.survivor.entity; public interface PlayerListener { /** Delegates when an Interactive GameObject has been scavenged by the player. */ void scavengedObject(InteractiveObject object); /** Delegates when a zombie dies. Tells the world to play the KO animation. */ void playKoAnimation(); }