package dev.kske.chess.event; /** * Project: Chess
* File: Event.java
* Created: 7 Aug 2019
* * @since Chess v0.4-alpha * @author Kai S. K. Engelbart * @param the type of the event's value */ public interface Event { /** * @return The data associated with the event */ T getData(); }