2020-09-22 15:11:20 +02:00
|
|
|
package com.minelittlepony.unicopia.entity;
|
2020-01-27 11:05:22 +01:00
|
|
|
|
2020-05-10 17:18:45 +02:00
|
|
|
public interface IItemEntity extends PonyContainer<ItemImpl> {
|
2020-01-27 11:05:22 +01:00
|
|
|
|
|
|
|
int getAge();
|
|
|
|
|
|
|
|
int getPickupDelay();
|
|
|
|
}
|