the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class BlockDestructionProgress
4{
5private:
6 int id;
7 int x;
8 int y;
9 int z;
10 int progress;
11 int updatedRenderTick;
12
13public:
14 BlockDestructionProgress(int id, int x, int y, int z);
15
16 int getId();
17 int getX();
18 int getY();
19 int getZ();
20 void setProgress(int progress);
21 int getProgress();
22 void updateTick(int tick);
23 int getUpdatedRenderTick();
24};