summaryrefslogtreecommitdiffstats
path: root/source/cSandSimulator.h
blob: a3809850dece8dc6192f08014a0014775e6780ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once
#include "cSimulator.h"
#include "cBlockEntity.h"
#include "vector"

class Vector3i;
class cWorld;
class cSandSimulator : public cSimulator
{
public:
	cSandSimulator( cWorld* a_World );
	~cSandSimulator();

	virtual void Simulate( float a_Dt );
	virtual inline void WakeUp( int a_X, int a_Y, int a_Z );

	virtual inline bool IsAllowedBlock( char a_BlockID );
	virtual inline bool IsPassable( char a_BlockID );

protected:
	virtual void AddBlock(int a_X, int a_Y, int a_Z);

	std::vector <Vector3i *> *m_Blocks;
	std::vector <Vector3i *> *m_Buffer;
};