Finalising merge with head

This commit is contained in:
stevenh
2011-01-29 17:28:31 +00:00
parent 0814239f31
commit dc04480c96
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package org.bukkit.plugin;
import org.bukkit.event.Event;
import org.bukkit.event.Listener;
/**
* Interface which defines the class for event call backs to plugins
*/
public interface IExecutor {
public void execute( Listener listener, Event event );
}