summaryrefslogtreecommitdiff
path: root/src/main/java/gmail/Lance5057/proxy/CommonProxy.java
blob: 164bf21b15bdb1a9e92e6d19739bf5c8ac12a563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package gmail.Lance5057.proxy;

import net.minecraft.client.model.ModelBiped;

public class CommonProxy {

        // Client stuff
        public void registerRenderers() {
                // Nothing here as the server doesn't render graphics or entities!
        }
        
        public void registerTileEntitySpecialRenderer()
        {
        	
        }
        
        public ModelBiped getArmorModel(int id)
        { 
        	return null;
        } 
}