
org.refcodes.checkerboard.PlayerObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refcodes-checkerboard Show documentation
Show all versions of refcodes-checkerboard Show documentation
Artifact for providing some easy means to visualize (state of) board
games or (state of) cellular automatons.
package org.refcodes.checkerboard;
import org.refcodes.exception.VetoException;
public interface PlayerObserver {
void onPlayerEvent( PlayerEvent aPlayerEvent );
void onChangePositionEvent( ChangePositionEvent aPlayerEvent ) throws VetoException;
void onPositionChangedEvent( PositionChangedEvent aPlayerEvent );
void onStateChangedEvent( StateChangedEvent aPlayerEvent );
void onVisibilityChangedEvent( VisibilityChangedEvent aPlayerEvent );
void onDraggabilityChangedEvent( DraggabilityChangedEvent aPlayerEvent );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy