#pragma once #include "copium/event/Event.h" #include namespace Copium { class MousePressEvent : public Event { private: int button; public: MousePressEvent(int button); int GetButton() const; }; }