We need UConf as well as MConf.

This commit is contained in:
Olof Larsson
2013-04-22 16:26:44 +02:00
parent 26fa7e8b95
commit 6d2db1930c
6 changed files with 115 additions and 22 deletions

View File

@@ -0,0 +1,22 @@
package com.massivecraft.factions.entity;
import com.massivecraft.mcore.store.Entity;
public class UConf extends Entity<UConf>
{
// -------------------------------------------- //
// META
// -------------------------------------------- //
public static UConf get(Object worldNameExtractable)
{
return UConfColls.get().get2(worldNameExtractable);
}
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
}