summaryrefslogblamecommitdiffstats
path: root/src/Simulator/RedstoneSimulator.h
blob: 0e3dd495df6d0adcda320f00df8112884379f17e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
 

            
                      

 





                                                 
 
                                           
                          
                                               
 
                                                       
        
       



                                                 
 
   

#pragma once

#include "Simulator.h"


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


template <class ChunkType, class WorldType>
class cRedstoneSimulator :
	public cSimulator<ChunkType, WorldType>
{
	typedef cSimulator<ChunkType, WorldType> super;
	
public:
	cRedstoneSimulator(WorldType & a_World) :
	super(a_World)
	{
	}

} ;