package event.editor;

import java.awt.event.*;
import scriptbuilder.structures.events.I_ScriptEvent;

public interface RemoveablePanel
{

    /**
     * Set up the listener for removing this panel.
     *
     * @param listener the remove listener to be added
     */
    void setRemoveListener(ActionListener listener);
}
