001package net.minecraft.client;
002
003import cpw.mods.fml.common.FMLCommonHandler;
004import cpw.mods.fml.relauncher.Side;
005import cpw.mods.fml.relauncher.SideOnly;
006
007@SideOnly(Side.CLIENT)
008public class ClientBrandRetriever
009{
010    public static String getClientModName()
011    {
012        return FMLCommonHandler.instance().getModName();
013    }
014}