1
0
mirror of https://github.com/MoleskiCoder/EightBit.git synced 2025-03-30 12:35:04 +00:00
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; }
};
}