View Javadoc

1   /*
2    @See License.txt@
3    */
4   package spellcast.beings;
5   
6   public interface IMonster extends IBeing {
7   
8       /***
9        * Return the <code>IWizard</code> who is the owner of this
10       * <code>IMonster</code>.
11       *
12       * @return the <code>IWizard</code> who is the owner of this
13       *         <code>IMonster</code>.
14       */
15      IWizard getOwner();
16  
17  }