equivalent-exchange-3/common/com/pahimar/ee3/core/handler/ActionRequestHandler.java
pahimar 7a76731f31 More default EmcValue assignments, change the AddonHandler to
AddonIMCHandler, add a AddonIMCVanilla for vanilla "recipes" for
EmcValue assignment
2013-10-28 15:22:23 -04:00

23 lines
435 B
Java

package com.pahimar.ee3.core.handler;
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) {
}
}