1 /* 2 @See License.txt@ 3 */ 4 package spellcast.questions; 5 6 import spellcast.beings.IBeing; 7 8 /*** 9 * This interface requires a target. 10 * 11 * @author Barrie Treloar 12 * @version $Revision: 1.1 $ 13 */ 14 public interface IRequiresTarget { 15 /*** 16 * Set the target. 17 * 18 * @param theTarget the <code>IBeing</code> that is the target. 19 */ 20 void setTarget(IBeing theTarget); 21 22 }