1
0
cuberite-2a/src/Simulator/RedstoneManager.h
STRWarrior 176664810b Implemented an easy way of adding new redstone simulators.
Also added a "noop" redstone simulator that does the same as the fluid version.
2014-02-07 22:13:55 +01:00

17 lines
166 B
C++

#pragma once
#include "Simulator.h"
class cRedstoneManager :
public cSimulator
{
typedef cSimulator super;
public:
cRedstoneManager(cWorld & a_World);
} ;