mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-04-06 15:33:32 +00:00
the whole game
This commit is contained in:
25
src/world/level/TickNextTickData.h
Executable file
25
src/world/level/TickNextTickData.h
Executable file
@@ -0,0 +1,25 @@
|
||||
#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__*/
|
||||
Reference in New Issue
Block a user