15 lines
434 B
C++
Executable File
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__ */
|