diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-08 13:36:54 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-08 13:36:54 +0100 |
commit | 32880153ab76830311d8a1db3a157cd5ac6e5d9c (patch) | |
tree | c7c77a8c5b6bf86f3f18655e8ec976c30a5c8c15 /source/cChunk.h | |
parent | cSocketThreads plugged in for cClientHandle reading. Sending still kept the old way. Please help me test this commit thoroughly, this is a change that can break on subtleties. (diff) | |
download | cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar.gz cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar.bz2 cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar.lz cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar.xz cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.tar.zst cuberite-32880153ab76830311d8a1db3a157cd5ac6e5d9c.zip |
Diffstat (limited to 'source/cChunk.h')
-rw-r--r-- | source/cChunk.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/source/cChunk.h b/source/cChunk.h index bd9882659..cd1122922 100644 --- a/source/cChunk.h +++ b/source/cChunk.h @@ -1,3 +1,4 @@ +
#pragma once
#define C_CHUNK_USE_INLINE 1
@@ -14,14 +15,23 @@ namespace Json class Value;
};
+
+
+
+
class cWorld;
-class cCriticalSection;
class cFurnaceEntity;
class cPacket;
class cBlockEntity;
class cEntity;
class cClientHandle;
class cServer;
+class MTRand;
+
+
+
+
+
class cChunk
{
public:
@@ -30,7 +40,7 @@ public: void Initialize();
- void Tick(float a_Dt);
+ void Tick(float a_Dt, MTRand & a_TickRandom);
int GetPosX() { return m_PosX; }
int GetPosY() { return m_PosY; }
|