mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 19:05:32 +00:00
105032f08a
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
13 lines
173 B
C++
13 lines
173 B
C++
#pragma once
|
|
|
|
namespace EightBit {
|
|
class EventArgs {
|
|
private:
|
|
static EventArgs m_empty;
|
|
|
|
public:
|
|
static EventArgs& empty() { return m_empty; }
|
|
|
|
EventArgs() {}
|
|
};
|
|
} |