Using Super.
This commit is contained in:
committed by
Alexander Harkness
parent
f931590bf0
commit
9ee47e5999
@@ -8,13 +8,15 @@
|
||||
|
||||
|
||||
|
||||
class cIncrementalRedstoneSimulator :
|
||||
class cIncrementalRedstoneSimulator:
|
||||
public cRedstoneSimulator
|
||||
{
|
||||
typedef cRedstoneSimulator super;
|
||||
using Super = cRedstoneSimulator;
|
||||
|
||||
public:
|
||||
cIncrementalRedstoneSimulator(cWorld & a_World) :
|
||||
super(a_World)
|
||||
|
||||
cIncrementalRedstoneSimulator(cWorld & a_World):
|
||||
Super(a_World)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user