1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 22:57:45 +00:00
sapphire/src/common/Event/Observer.h

12 lines
170 B
C
Raw Normal View History

#pragma once
#include "Event.h"
namespace Sapphire::Common::EventSystem
{
class EventObserver
{
public:
virtual void handleEvent( const Event& e ) = 0;
};
}