2017-06-04 20:38:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace EightBit {
|
|
|
|
class EventArgs {
|
|
|
|
private:
|
|
|
|
static EventArgs m_empty;
|
|
|
|
|
|
|
|
public:
|
2021-07-18 13:28:40 +00:00
|
|
|
[[nodiscard]] static constexpr auto& empty() noexcept { return m_empty; }
|
2017-06-04 20:38:34 +00:00
|
|
|
};
|
2017-11-30 23:19:17 +00:00
|
|
|
}
|