mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-02 09:15:28 +02: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);
|
|
}
|