15 lines
158 B
C++
Executable File
15 lines
158 B
C++
Executable File
#pragma once
|
|
|
|
#include "engine.h"
|
|
|
|
#include "event.h"
|
|
|
|
|
|
class EventHandler {
|
|
|
|
public:
|
|
EventHandler();
|
|
|
|
bool handleEvent(const Event*, Layer*);
|
|
};
|