Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
304 B · 21 lines
C
at master
123456789101112131415161718192021#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);};