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;
|
||
|
|
||
|
import net.minecraft.entity.Entity;
|
||
|
|
||
|
public interface ITrap {
|
||
|
boolean attemptDismount(Entity passenger);
|
||
|
}
|