EightBit/inc/EventArgs.h
Adrian Conlon 9960ad6012 Tidy return parameter usage a little within the EightBit library.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
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; }
};
}