2013-04-22 21:00:00 +02:00
|
|
|
package com.massivecraft.factions.entity;
|
|
|
|
|
|
|
|
import com.massivecraft.mcore.store.SenderEntity;
|
|
|
|
|
|
|
|
public class MPlayer extends SenderEntity<MPlayer>
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// META
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public static MPlayer get(Object oid)
|
|
|
|
{
|
|
|
|
return MPlayerColl.get().get(oid);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public MPlayer load(MPlayer that)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isDefault()
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
//return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
2013-04-23 09:17:30 +02:00
|
|
|
|
2013-04-22 21:00:00 +02:00
|
|
|
|
|
|
|
}
|