mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
21 lines
345 B
C++
21 lines
345 B
C++
#pragma once
|
|
|
|
struct TickNextTickData
|
|
{
|
|
static int C;
|
|
|
|
TickNextTickData(int a, int b, int c, int d);
|
|
int hashCode() const;
|
|
bool operator<(const TickNextTickData& other) const;
|
|
bool operator==(const TickNextTickData& other) const;
|
|
void setDelay(long);
|
|
|
|
int m_ID;
|
|
int field_4;
|
|
int field_8;
|
|
int field_C;
|
|
int field_10;
|
|
long m_delay;
|
|
};
|
|
|