mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-09 13:07:15 +00:00
d70f6b375b
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
12 lines
156 B
C++
12 lines
156 B
C++
#pragma once
|
|
|
|
namespace EightBit {
|
|
class EventArgs {
|
|
private:
|
|
static EventArgs m_empty;
|
|
|
|
public:
|
|
static EventArgs& empty() { return m_empty; }
|
|
};
|
|
}
|