forked from External/mage
Done Issue 16: Games played counter plugin.
This commit is contained in:
parent
a2561515a3
commit
b143a5a44d
14 changed files with 342 additions and 32 deletions
15
Mage.Common/src/mage/interfaces/plugin/CounterPlugin.java
Normal file
15
Mage.Common/src/mage/interfaces/plugin/CounterPlugin.java
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package mage.interfaces.plugin;
|
||||
|
||||
import mage.interfaces.PluginException;
|
||||
import net.xeoh.plugins.base.Plugin;
|
||||
|
||||
/**
|
||||
* Interface for counter plugins
|
||||
*
|
||||
* @version 0.1 14.112010
|
||||
* @author nantuko
|
||||
*/
|
||||
public interface CounterPlugin extends Plugin {
|
||||
void addGamePlayed() throws PluginException;
|
||||
int getGamePlayed() throws PluginException;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue