EightBit/inc/EventArgs.h
Adrian Conlon d70f6b375b Ensure each header file has a newline on its own at the end of each file.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2017-11-30 23:19:17 +00:00

12 lines
156 B
C++

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