games.rednblack.puremvc.commands.SimpleCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Minimal PureMVC implementation using libGDX data structure
package games.rednblack.puremvc.commands;
import games.rednblack.puremvc.Notifier;
import games.rednblack.puremvc.interfaces.ICommand;
import games.rednblack.puremvc.interfaces.INotification;
public class SimpleCommand extends Notifier implements ICommand {
@Override
public void execute(INotification notification) {
}
@Override
public void onRegister() {
}
@Override
public void onRemove() {
}
}