home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java 1.2 How-To
/
JavaHowTo.iso
/
3rdParty
/
Gamelication
/
examples
/
Boink
/
com
/
next
/
gt
/
BonusHandler.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Java Source
|
1998-04-15
|
318 b
|
20 lines
/**
*
* BonusHandler.java
* @author Mark G. Tacchi (mtacchi@next.com)
* @version 0.8
* Mar 15/1996
*
*
* An interface. The object which requires notification for bonuses
* should implement this.
*
*/
package com.next.gt;
public interface BonusHandler {
void didAchieveBonus ();
} /*BonusHandler*/