1 /* 2 @See License.txt@ 3 */ 4 5 package spellcast.event; 6 7 import java.io.*; 8 9 /*** 10 * A Game Event specifies that something happened in the game, it is merely a tag. 11 * Classes will implement this interface to provide different event types. 12 * 13 * @author Barrie Treloar 14 */ 15 public interface GameEvent 16 extends Serializable 17 { 18 } 19