/* Copyright 1996 Rujith de Silva. Modified 2002-03-28. */ package rujith.pentominoes; /** * Listener for changes in the board. In particular, it listens for * changes in the piece-move status: none, dragging, or rotating. */ public interface BoardListener{ /** * Called when the board has changed. * * @param status of the board: 0, 1 or 2. */ public void changed(int status); }