2012-08-26 00:54:15 +02:00
|
|
|
package com.massivecraft.factions.integration.herochat;
|
|
|
|
|
2013-04-18 15:40:58 +02:00
|
|
|
import com.massivecraft.mcore.integration.IntegrationFeaturesAbstract;
|
2012-08-26 00:54:15 +02:00
|
|
|
|
2013-04-18 15:40:58 +02:00
|
|
|
public class HerochatFeatures extends IntegrationFeaturesAbstract
|
2012-08-26 00:54:15 +02:00
|
|
|
{
|
2013-04-18 15:40:58 +02:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static HerochatFeatures i = new HerochatFeatures();
|
|
|
|
public static HerochatFeatures get() { return i; }
|
|
|
|
private HerochatFeatures() { super("Herochat"); }
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void activate()
|
|
|
|
{
|
2013-04-19 09:50:33 +02:00
|
|
|
HerochatEngine.get().activate();
|
2013-04-18 15:40:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void deactivate()
|
2012-08-26 00:54:15 +02:00
|
|
|
{
|
2013-04-19 09:50:33 +02:00
|
|
|
HerochatEngine.get().deactivate();
|
2012-08-26 00:54:15 +02:00
|
|
|
}
|
2013-04-18 15:40:58 +02:00
|
|
|
|
2012-08-26 00:54:15 +02:00
|
|
|
}
|