mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-10 19:19:01 +02:00
21 lines
304 B
C++
21 lines
304 B
C++
#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);
|
|
}; |