Files
minecraft-pe-0.6.1/src/world/level/tile/NetherReactorPattern.h
2026-03-02 22:04:18 +03:00

15 lines
434 B
C++
Executable File

#ifndef NET_MINECRAFT_WORLD_LEVEL_TILE__NetherReactorPattern_H__
#define NET_MINECRAFT_WORLD_LEVEL_TILE__NetherReactorPattern_H__
class NetherReactorPattern {
public:
NetherReactorPattern();
unsigned int getTileAt(int level, int x, int z);
private:
void setTileAt(int level, int x, int z, int tile);
private:
unsigned int pattern[3][3][3];
};
#endif /* NET_MINECRAFT_WORLD_LEVEL_TILE__NetherReactorPattern_H__ */