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