blob: bde5f0d71886564a436eece1e607d94a9b53e592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package me.shedaniel.api;
/**
* Created by James on 7/27/2018.
*/
public interface IREIPlugin {
public void registerCategories();
public void registerRecipes();
public void registerSpecialGuiExclusion();
}
|