summaryrefslogtreecommitdiffstats
path: root/src/Simulator/RedstoneSimulator.h
blob: b0ad08aa49612c2bb51c738f2e972c0b236f4501 (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
26
27
28
29
30

#pragma once

#include "Simulator.h"


class cRedstoneSimulatorChunkData
{
public:
	virtual ~cRedstoneSimulatorChunkData() = 0;
} ;


inline cRedstoneSimulatorChunkData::~cRedstoneSimulatorChunkData() {}


class cRedstoneSimulator :
	public cSimulator
{
	typedef cSimulator super;
	
public:
	cRedstoneSimulator(cWorld & a_World) :
	super(a_World)
	{
	}
	
	virtual cRedstoneSimulatorChunkData * CreateChunkData() = 0;

} ;