mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-08 22:06:20 +00:00
22506ea56c
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
12 lines
184 B
C++
12 lines
184 B
C++
#pragma once
|
|
|
|
namespace EightBit {
|
|
class EventArgs {
|
|
private:
|
|
static EventArgs m_empty;
|
|
|
|
public:
|
|
[[nodiscard]] static constexpr auto& empty() noexcept { return m_empty; }
|
|
};
|
|
}
|