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

class TileEventData
{
private:
	int x, y, z;
	int tile;
	int paramA;
	int paramB;

public:
	TileEventData(int x, int y, int z, int tile, int paramA, int paramB);

	int getX();
	int getY();
	int getZ();
	int getParamA();
	int getParamB();
	int getTile();
	bool equals(TileEventData &ted);
};