package model.bodyPart; /** * An adapter to signal a view that the game was lost. * This is the adapter that connects the ABodyPart model to its view. */ public interface ILoseAdapter { /** * The method called by the model to signal to the view that the game was lost. */ abstract public void lose(); }