mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-04-06 15:33:32 +00:00
26 lines
574 B
C++
Executable File
26 lines
574 B
C++
Executable File
#ifndef NET_MINECRAFT_WORLD_LEVEL__TickNextTickData_H__
|
|
#define NET_MINECRAFT_WORLD_LEVEL__TickNextTickData_H__
|
|
|
|
//package net.minecraft.world.level;
|
|
|
|
class TickNextTickData
|
|
{
|
|
static long C;
|
|
long c;
|
|
|
|
public:
|
|
int x, y, z, tileId;
|
|
long delay;
|
|
|
|
TickNextTickData(int x_, int y_, int z_, int tileId_);
|
|
|
|
int hashCode() const;
|
|
|
|
bool operator==(const TickNextTickData& t) const;
|
|
bool operator<(const TickNextTickData& tnd) const;
|
|
|
|
TickNextTickData* setDelay(long l);
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_WORLD_LEVEL__TickNextTickData_H__*/
|