18 lines
162 B
C++
18 lines
162 B
C++
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include "pch.hpp"
|
|
|
|
namespace Archimedes {
|
|
|
|
class Event {
|
|
|
|
public:
|
|
|
|
unsigned int type;
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|