001    package net.minecraft.client.texturepacks;
002    
003    import cpw.mods.fml.relauncher.Side;
004    import cpw.mods.fml.relauncher.SideOnly;
005    
006    @SideOnly(Side.CLIENT)
007    public class TexturePackDefault extends TexturePackImplementation
008    {
009        public TexturePackDefault()
010        {
011            super("default", "Default");
012        }
013    
014        /**
015         * Load texture pack description from /pack.txt file in the texture pack
016         */
017        protected void loadDescription()
018        {
019            this.firstDescriptionLine = "The default look of Minecraft";
020        }
021    }