Unicopia/src/main/java/com/minelittlepony/unicopia/item/IMagicalItem.java

12 lines
323 B
Java
Raw Normal View History

2018-09-19 09:09:30 +02:00
package com.minelittlepony.unicopia.item;
public interface IMagicalItem {
/**
* If true this item serves as host to its own inner dimensional space.
* Bag of Holding will explode if you try to store items of this kind inside of it.
*/
default boolean hasInnerSpace() {
return false;
}
}