summaryrefslogblamecommitdiffstats
path: root/source/Simulator.h
blob: 00e1b5a0c8686ce1d34424e090aa36ffff8935ee (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                         
                                                                 




                                                             
 
#pragma once

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

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

	virtual bool IsAllowedBlock( BLOCKTYPE a_BlockType ) = 0;

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

	cWorld * m_World;
};