2020-06-26 11:44:47 +02:00
|
|
|
package com.minelittlepony.unicopia.equine;
|
2020-01-16 12:35:46 +01:00
|
|
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
|
2020-01-27 17:37:22 +01:00
|
|
|
public interface Trap {
|
2020-01-16 12:35:46 +01:00
|
|
|
boolean attemptDismount(Entity passenger);
|
|
|
|
}
|