mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
12 lines
323 B
Java
12 lines
323 B
Java
|
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;
|
||
|
}
|
||
|
}
|