equivalent-exchange-3/common/com/pahimar/ee3/core/handlers/ActionRequestHandler.java

24 lines
436 B
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.core.handlers;
import net.minecraftforge.event.ForgeSubscribe;
import com.pahimar.ee3.event.ActionRequestEvent;
/**
* Equivalent-Exchange-3
*
* ActionRequestHandler
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public class ActionRequestHandler {
@ForgeSubscribe
public void onModActionEvent(ActionRequestEvent event) {
}
}