home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / Gamelication / examples / Boinkaroids / com / next / gt / BonusHandler.java < prev    next >
Encoding:
Java Source  |  1998-04-15  |  318 b   |  20 lines

  1. /**
  2.  *
  3.  * BonusHandler.java
  4.  * @author    Mark G. Tacchi (mtacchi@next.com) 
  5.  * @version    0.8
  6.  * Mar 15/1996
  7.  *
  8.  * 
  9.  * An interface. The object which requires notification for bonuses
  10.  * should implement this.
  11.  *
  12.  */
  13.  
  14.  
  15. package com.next.gt;
  16.  
  17. public interface BonusHandler {
  18. void didAchieveBonus ();
  19. } /*BonusHandler*/
  20.