Recipe Engine Added, not quite done yet tho.

This commit is contained in:
AlgorithmX2
2014-02-09 21:16:36 -06:00
parent df1ba5282a
commit 4a87ceac4f
18 changed files with 530 additions and 441 deletions
+12
View File
@@ -0,0 +1,12 @@
package appeng.recipes;
public class RegistrationError extends Exception
{
private static final long serialVersionUID = -6602870588617670263L;
public RegistrationError(String n) {
super( n );
}
}