aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/rosegoldaddons/events/PlayerMoveEvent.java
blob: cab6637a286b80bc5adc84c45e5e7a589cf9aef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package rosegoldaddons.events;

import net.minecraftforge.fml.common.eventhandler.Cancelable;
import net.minecraftforge.fml.common.eventhandler.Event;

@Cancelable
public class PlayerMoveEvent extends Event {
    @Cancelable
    public static class Pre extends Event {}

    public static class Post extends Event {}
}