Factions3/src/com/massivecraft/factions/event/EventFactionsAbstract.java

22 lines
433 B
Java
Raw Normal View History

package com.massivecraft.factions.event;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.event.EventMassiveCore;
2014-06-04 16:47:01 +02:00
public abstract class EventFactionsAbstract extends EventMassiveCore
{
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public EventFactionsAbstract()
{
}
public EventFactionsAbstract(boolean isAsync)
{
super(isAsync);
}
}