foul-magics/Mage.Common/src/mage/interfaces/Action.java
2016-04-14 16:18:01 +00:00

18 lines
313 B
Java

package mage.interfaces;
import mage.MageException;
/**
* Light weight action interface.
* For executing actions without any context.
*
* @author ayratn, noxx
*/
public interface Action {
/**
* Executes action.
* @throws mage.MageException
*/
void execute() throws MageException;
}