11 lines
108 B
C++
11 lines
108 B
C++
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
class Event
|
|
{
|
|
public:
|
|
virtual ~Event() = default;
|
|
};
|
|
|
|
#endif // EVENT_H
|