16 lines
319 B
Java
Executable file
16 lines
319 B
Java
Executable file
package thaumcraft.api.aspects;
|
|
|
|
|
|
|
|
/**
|
|
* @author Azanor
|
|
*
|
|
* This interface is implemented by tile entites (or possibly anything else) like jars
|
|
* so that they can act as an essentia source for blocks like the infusion altar.
|
|
*
|
|
*/
|
|
public interface IAspectSource extends IAspectContainer {
|
|
|
|
|
|
|
|
}
|