mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 16:57:59 +01:00
15 lines
365 B
Java
15 lines
365 B
Java
|
package com.minelittlepony.unicopia.entity;
|
||
|
|
||
|
import com.minelittlepony.unicopia.Race;
|
||
|
|
||
|
/**
|
||
|
* This interface is for any entities that are categorised as inanimated,
|
||
|
* or part of a terrain effect.
|
||
|
*
|
||
|
* These typically can't be interacted with by players unless under certain cirumstances.
|
||
|
*
|
||
|
*/
|
||
|
public interface IInAnimate {
|
||
|
boolean canInteract(Race race);
|
||
|
}
|