aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BlockDestructionProgress.h
blob: 4c599e83da80d40eb3c270ee85720cebb83fa163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

class BlockDestructionProgress
{
private:
	int id;
	int x;
	int y;
	int z;
	int progress;
	int updatedRenderTick;

public:
	BlockDestructionProgress(int id, int x, int y, int z);

	int getId();
	int getX();
	int getY();
	int getZ();
	void setProgress(int progress);
	int getProgress();
	void updateTick(int tick);
	int getUpdatedRenderTick();
};