summaryrefslogtreecommitdiffstats
path: root/source/cSimulator.h
blob: 4e92ec1522b9f7dafbeb67a0449d099d4cad25be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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( char a_BlockID ) = 0;

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

	cWorld * m_World;
};