EightBit/inc/EventArgs.h

11 lines
155 B
C
Raw Normal View History

#pragma once
namespace EightBit {
class EventArgs {
private:
static EventArgs m_empty;
public:
static EventArgs& empty() { return m_empty; }
};
}