the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class IntBuffer;
4
5class OffsettedRenderList
6{
7private:
8 int x, y, z;
9 float xOff, yOff, zOff;
10 IntBuffer *lists;
11 bool inited;
12 bool rendered ;
13
14public:
15 OffsettedRenderList(); // 4J added
16 void init(int x, int y, int z, double xOff, double yOff, double zOff);
17 bool isAt(int x, int y, int z);
18 void add(int list);
19 void render();
20 void clear();
21};