aether-legacy/src/main/java/com/legacy/aether/api/events/moas/MoaEvent.java
2018-12-06 23:33:43 -05:00

22 lines
352 B
Java

package com.legacy.aether.api.events.moas;
import com.legacy.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;
}
}