2020-09-22 15:11:20 +02:00
|
|
|
package com.minelittlepony.unicopia.entity;
|
2020-01-27 11:05:22 +01:00
|
|
|
|
2022-12-25 16:01:12 +01:00
|
|
|
public interface IItemEntity extends Equine.Container<ItemImpl> {
|
2020-01-27 11:05:22 +01:00
|
|
|
|
|
|
|
int getAge();
|
|
|
|
|
|
|
|
int getPickupDelay();
|
|
|
|
}
|