mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
7 lines
155 B
Java
7 lines
155 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
public interface Trap {
|
|
boolean attemptDismount(Entity passenger);
|
|
}
|