equivalent-exchange-3/common/com/pahimar/ee3/lib/InterModComms.java
pahimar 02ab42d1a4 Refactoring names for the EmcValue containing classes, and first steps
towards IMC methods for passing EmcValues for use before/after pre/post
auto assignment of EmcValues
2013-10-28 15:43:45 -04:00

15 lines
571 B
Java

package com.pahimar.ee3.lib;
public class InterModComms {
// Interacting with the Recipe Registry
public static final String ADD_RECIPE = "add-recipe";
// 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";
// Interacting with the EMC value mappings
public static final String ASSIGN_EMC_VALUE_PRE = "assign-emc-value-pre";
public static final String ASSIGN_EMC_VALUE_POST = "assign-emc-value-post";
}