All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigcustard.scene2dplus.textarea.command.DeleteCommand Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.scene2dplus.textarea.command;

import com.bigcustard.scene2dplus.textarea.TextAreaModel;

public class DeleteCommand extends AbstractTextAreaCommand {
    public DeleteCommand(TextAreaModel model) {
        super(model);
    }

    @Override
    public void execute() {
        model.deleteCharacter();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy