mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-10 04:05:40 +00:00
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() {}
|
||
|
};
|
||
|
}
|