Files
EightBit/inc/EventArgs.h
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; }
};
}