aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/TheEndPortalRenderer.h
blob: 1e4ca546c4a7a1b5d8617c5e7c6fdb38dd5ce035 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "TileEntityRenderer.h"

class TheEndPortalRenderer : public TileEntityRenderer
{
public:
	virtual void render(shared_ptr<TileEntity> _table, double x, double y, double z, float a, bool setColor, float alpha=1.0f, bool useCompiled = true);

	FloatBuffer *lb;

	TheEndPortalRenderer();

private:
	FloatBuffer *getBuffer(float a, float b, float c, float d);
};