13 lines
253 B
Java
13 lines
253 B
Java
package thaumcraft.api;
|
|
|
|
|
|
|
|
/**
|
|
* @author Azanor
|
|
* Items, armor and tools with this interface can receive the Repair enchantment.
|
|
* Repairs 1 point of durability every 10 seconds (2 for repair II)
|
|
*/
|
|
public interface IRepairable {
|
|
|
|
|
|
}
|