EightBit/inc/EventArgs.h

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