mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
11 lines
170 B
C++
11 lines
170 B
C++
#pragma once
|
|
#include "Event.h"
|
|
|
|
namespace Sapphire::Common::EventSystem
|
|
{
|
|
class EventObserver
|
|
{
|
|
public:
|
|
virtual void handleEvent( const Event& e ) = 0;
|
|
};
|
|
}
|