mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-27 12:18:49 +05:00
26 lines
406 B
C++
26 lines
406 B
C++
#pragma once
|
|
|
|
class FlatLayerInfo
|
|
{
|
|
private:
|
|
int height;
|
|
int id;
|
|
int data;
|
|
int start;
|
|
|
|
void _init(int height, int id);
|
|
|
|
public:
|
|
FlatLayerInfo(int height, int id);
|
|
FlatLayerInfo(int height, int id, int data);
|
|
|
|
int getHeight();
|
|
void setHeight(int height);
|
|
int getId();
|
|
void setId(int id);
|
|
int getData();
|
|
void setData(int data);
|
|
int getStart();
|
|
void setStart(int start);
|
|
wstring toString();
|
|
}; |