forked from External/mage
Moved Mage.Common classes from src to src/main/java
This commit is contained in:
parent
e9d31aa93c
commit
21eb420c16
102 changed files with 0 additions and 0 deletions
18
Mage.Common/src/main/java/mage/interfaces/Action.java
Normal file
18
Mage.Common/src/main/java/mage/interfaces/Action.java
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue