diff options
| author | Lance5057 <Lance5057@gmail.com> | 2015-01-21 20:04:34 -0600 |
|---|---|---|
| committer | Lance5057 <Lance5057@gmail.com> | 2015-01-21 20:04:34 -0600 |
| commit | b4eb8f2d65c62afccc898808b44fdddfde0c15d1 (patch) | |
| tree | ee3a9f47a22418a6778c299cc96b4fedc2265afe /src/main/java/gmail/Lance5057/proxy/CommonProxy.java | |
| parent | 39642dce74d23f025b71d5766c1ac8489a41a802 (diff) | |
Startup
I hope I'm doing this right...
Diffstat (limited to 'src/main/java/gmail/Lance5057/proxy/CommonProxy.java')
| -rw-r--r-- | src/main/java/gmail/Lance5057/proxy/CommonProxy.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/java/gmail/Lance5057/proxy/CommonProxy.java b/src/main/java/gmail/Lance5057/proxy/CommonProxy.java new file mode 100644 index 0000000..164bf21 --- /dev/null +++ b/src/main/java/gmail/Lance5057/proxy/CommonProxy.java @@ -0,0 +1,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; + } +}
\ No newline at end of file |
