mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-09 09:31:34 +00:00
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; }
|
|
};
|
|
}
|