2014-11-07 02:25:53 +00:00
|
|
|
package WayofTime.alchemicalWizardry.api.event;
|
|
|
|
|
2015-07-29 12:23:01 +00:00
|
|
|
import net.minecraftforge.fml.common.eventhandler.Event;
|
|
|
|
|
2014-11-07 02:25:53 +00:00
|
|
|
|
|
|
|
public class SoulNetworkEvent extends Event
|
|
|
|
{
|
|
|
|
public String ownerNetwork;
|
|
|
|
public int drainAmount;
|
|
|
|
|
|
|
|
public SoulNetworkEvent(String ownerNetwork, int drainAmount)
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
this.ownerNetwork = ownerNetwork;
|
|
|
|
this.drainAmount = drainAmount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOwnerNetwork()
|
|
|
|
{
|
|
|
|
return this.ownerNetwork;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDrainAmount()
|
|
|
|
{
|
|
|
|
return this.drainAmount;
|
|
|
|
}
|
|
|
|
}
|