BlockDestroyedEvent.h 233 B

123456789101112131415
  1. #pragma once
  2. #include "Block.h"
  3. // TODO: add course of destruction
  4. class BlockDestroyedEvent : public Event
  5. {
  6. private:
  7. const Block *block;
  8. public:
  9. BlockDestroyedEvent( Block *block );
  10. const Block *getBlock() const;
  11. };