mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 02:08:25 +00:00
11 lines
155 B
C
11 lines
155 B
C
|
#pragma once
|
||
|
|
||
|
namespace EightBit {
|
||
|
class EventArgs {
|
||
|
private:
|
||
|
static EventArgs m_empty;
|
||
|
|
||
|
public:
|
||
|
static EventArgs& empty() { return m_empty; }
|
||
|
};
|
||
|
}
|