11 lines
87 B
C++
11 lines
87 B
C++
#ifndef Event_h__
|
|
#define Event_h__
|
|
|
|
struct Event
|
|
{
|
|
protected:
|
|
Event() { }
|
|
};
|
|
|
|
#endif
|