- #pragma once
- #include "AbstractEventListener.h"
- class DefaultEventListener : public AbstractEventListener
- {
- protected:
- virtual void onBlockDestroyed( const BlockDestroyedEvent &event ) override;
- virtual void onLocationChanged( const LocationChangedEvent &event ) override;
- };
|