1
0

Small performance improvements in fluid simulator.

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1276 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2013-03-14 21:56:01 +00:00
parent a710fcc9a4
commit 6f883cba2d
4 changed files with 41 additions and 31 deletions

View File

@@ -22,7 +22,9 @@ public:
cDelayedFluidSimulatorChunkData(int a_TickDelay);
virtual ~cDelayedFluidSimulatorChunkData();
/// Slots, one for each delay tick, each containing the blocks to simulate; relative coords. Int param not used.
/** Slots, one for each delay tick, each containing the blocks to simulate; relative coords.
Int param is the block index (for faster duplicate comparison in cDelayedFluidSimulator::AddBlock())
*/
cCoordWithIntVector * m_Slots;
} ;