2020-09-22 15:11:20 +02:00
|
|
|
package com.minelittlepony.unicopia.entity;
|
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);
|
|
|
|
}
|