I have written a few simple mods for minecraft 1.7.10, but a lot has changed since then. I am under the impression that I have created the model class, the render class, and the entity class correctly, but I cannot figure out how to assign the renderer to the entity. In 1.7.10, this was a single line of code, but in 1.10, the factory method seems to be the standard. I have seen the following pattern several times:
RenderingRegistry.registerEntityRenderingHandler(MyEntity.class, MyRenderer::new)
However, according to the documentation within forge, this method is deprecated, and I am not sure how to render entities so that in future releases of forge my mod will be up to date.