mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 23:48:00 +01:00
8 lines
156 B
Java
8 lines
156 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
public interface IItemEntity extends PonyContainer<ItemImpl> {
|
|
|
|
int getAge();
|
|
|
|
int getPickupDelay();
|
|
}
|