package net.demilich.metastone.gui.playmode.animation; import net.demilich.nittygrittymvc.SimpleCommand; import net.demilich.nittygrittymvc.interfaces.INotification; import net.demilich.metastone.GameNotification; public class AnimationCompletedCommand extends SimpleCommand<GameNotification> { @Override public void execute(INotification<GameNotification> notification) { AnimationProxy animationProxy = (AnimationProxy) getFacade().retrieveProxy(AnimationProxy.NAME); animationProxy.animationCompleted(); } }