mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-08 18:30:32 +00:00
12 lines
151 B
C++
12 lines
151 B
C++
#pragma once
|
|
|
|
namespace EightBit {
|
|
class EventArgs {
|
|
private:
|
|
static EventArgs m_empty;
|
|
|
|
public:
|
|
static auto& empty() { return m_empty; }
|
|
};
|
|
}
|