Files
EightBit/inc/EventArgs.h
2018-11-29 00:09:40 +00:00

12 lines
174 B
C++

#pragma once
namespace EightBit {
class EventArgs {
private:
static EventArgs m_empty;
public:
[[nodiscard]] static auto& empty() noexcept { return m_empty; }
};
}