blob: 384e76d2e879d43c58c0225330abf2ac76401f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.thatgravyboat.skyblockhud.api.events;
import com.thatgravyboat.skyblockhud.location.Locations;
import net.minecraftforge.fml.common.eventhandler.Event;
public class LocationChangeEvent extends Event {
public Locations oldLocation;
public Locations newLocation;
public LocationChangeEvent(Locations oldLocation, Locations newLocation) {
this.oldLocation = oldLocation;
this.newLocation = newLocation;
}
}
|