EightBit/inc/EventArgs.h
2021-07-18 14:28:40 +01:00

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; }
};
}