7 lines
91 B
C++
7 lines
91 B
C++
#pragma once
|
|
|
|
struct Event {
|
|
virtual ~Event() = default;
|
|
bool handled_ = false;
|
|
};
|