EightBit/inc/EventArgs.h
Adrian Conlon 62f3cd717b First set of C++17/14 changes to the core library
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-10-27 17:30:23 +01:00

12 lines
151 B
C++

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