1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00
sapphire/src/common/Event/Observer.h
2023-02-21 14:30:41 +01:00

11 lines
170 B
C++

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