equivalent-exchange-3/common/com/pahimar/ee3/lib/InterModComms.java

15 lines
477 B
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.lib;
public class InterModComms {
// Interacting with the Recipe Registry
public static final String ADD_RECIPE = "add-recipe";
2013-09-07 04:47:12 +02:00
2013-08-23 16:59:50 +02:00
// Interacting with the EMC BlackList
public static final String ADD_BLACKLIST_ENTRY = "add-blacklist-entry";
public static final String REMOVE_BLACKLIST_ENTRY = "remove-blacklist-entry";
2013-09-07 04:47:12 +02:00
2013-08-23 16:59:50 +02:00
// Interacting with the EMC value mappings
public static final String SET_EMC_VALUE = "set-emc-value";
}