2013-04-22 21:00:00 +02:00
|
|
|
package com.massivecraft.factions.entity;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Const;
|
|
|
|
import com.massivecraft.factions.Factions;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.store.MStore;
|
|
|
|
import com.massivecraft.massivecore.store.SenderColl;
|
2013-04-22 21:00:00 +02:00
|
|
|
|
|
|
|
public class MPlayerColl extends SenderColl<MPlayer>
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// INSTANCE & CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
private static MPlayerColl i = new MPlayerColl();
|
|
|
|
public static MPlayerColl get() { return i; }
|
|
|
|
private MPlayerColl()
|
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
super(Const.COLLECTION_MPLAYER, MPlayer.class, MStore.getDb(), Factions.get());
|
2013-04-22 21:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|