
com.bigcustard.scene2dplus.command.AbstractCommand Maven / Gradle / Ivy
package com.bigcustard.scene2dplus.command;
public abstract class AbstractCommand implements Command {
@Override
public void undo() {
}
@Override
public boolean canExecute() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy