BlockPlacedEvent.h 205 B

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