aether-legacy/src/main/java/com/gildedgames/the_aether/api/events/moas/MoaEvent.java
2023-03-13 19:53:26 +01:00

16 lines
392 B
Java

package com.gildedgames.the_aether.api.events.moas;
import com.gildedgames.the_aether.api.moa.AetherMoaType;
import cpw.mods.fml.common.eventhandler.Event;
public class MoaEvent extends Event {
private AetherMoaType moaType;
public MoaEvent(AetherMoaType moaType) {
this.moaType = moaType;
}
public AetherMoaType getMoaType() {
return this.moaType;
}
}