001/*
002 * Forge Mod Loader
003 * Copyright (c) 2012-2013 cpw.
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser Public License v2.1
006 * which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
008 * 
009 * Contributors:
010 *     cpw - implementation
011 */
012
013package net.minecraft.src;
014
015import net.minecraft.client.Minecraft;
016import net.minecraft.client.renderer.EntityRenderer;
017
018public class EntityRendererProxy extends EntityRenderer
019{
020    public static final String fmlMarker = "This is an FML marker";
021    private Minecraft game;
022
023    public EntityRendererProxy(Minecraft minecraft)
024    {
025        super(minecraft);
026        game = minecraft;
027    }
028
029    @Override
030
031    /**
032     * Will update any inputs that effect the camera angle (mouse) and then render the world and GUI
033     */
034    public void updateCameraAndRender(float tick)
035    {
036        super.updateCameraAndRender(tick);
037        //This is where ModLoader does all of it's ticking
038    }
039}