xbot/event.hpp
2023-11-27 19:09:45 -08:00

7 lines
91 B
C++

#pragma once
struct Event {
virtual ~Event() = default;
bool handled_ = false;
};