package view; import java.awt.*; /** * Adapter used by the HangmanFrame (view) to get the HangmanGame (model) * to paint the body parts onto the supplied Graphics context. */ public interface IPaintAdapter { /** * Paints the body parts onto a given Graphics context. * @param g The Graphics context to paint on. */ public abstract void paint(Graphics g); }