#pragma once #include "Block.h" // TODO: add course of destruction class BlockDestroyedEvent : public Event { private: const Block *block; public: BlockDestroyedEvent( Block *block ); const Block *getBlock() const; };