mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-19 21:43:51 +00:00
Initial commit
This commit is contained in:
parent
def8cb4153
commit
b691c43c44
19437 changed files with 4363922 additions and 0 deletions
11
Minecraft.Client/DefaultRenderer.cpp
Normal file
11
Minecraft.Client/DefaultRenderer.cpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include "stdafx.h"
|
||||
#include "DefaultRenderer.h"
|
||||
#include "..\Minecraft.World\net.minecraft.world.entity.h"
|
||||
|
||||
void DefaultRenderer::render(shared_ptr<Entity> entity, double x, double y, double z, float rot, float a)
|
||||
{
|
||||
glPushMatrix();
|
||||
// 4J - removed following line as doesn't really make any sense
|
||||
// render(entity->bb, (x-entity->xOld), (y-entity->yOld), (z-entity->zOld));
|
||||
glPopMatrix();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue