Revert "Replace ItemCallbacks with lambdas (#3948)"
This reverts commit 496c337cdf.
This commit is contained in:
committed by
Alexander Harkness
parent
700bbdabf5
commit
49c443896d
@@ -45,12 +45,17 @@ public:
|
||||
return {};
|
||||
}
|
||||
|
||||
a_World.DoWithNoteBlockAt(a_Position.x, a_Position.y, a_Position.z, [](cNoteEntity & a_NoteBlock)
|
||||
class cSetPowerToNoteBlock : public cNoteBlockCallback
|
||||
{
|
||||
public:
|
||||
virtual bool Item(cNoteEntity * a_NoteBlock) override
|
||||
{
|
||||
a_NoteBlock.MakeSound();
|
||||
a_NoteBlock->MakeSound();
|
||||
return false;
|
||||
}
|
||||
);
|
||||
} NoteBlockSP;
|
||||
|
||||
a_World.DoWithNoteBlockAt(a_Position.x, a_Position.y, a_Position.z, NoteBlockSP);
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user