mirror of
https://github.com/ApfelTeeSaft/WV-Core.git
synced 2026-09-02 12:13:32 +00:00
18 lines
321 B
C++
18 lines
321 B
C++
#pragma once
|
|
|
|
#include <wv/events/Event.h>
|
|
|
|
namespace WillowVox
|
|
{
|
|
class MouseClickEvent : public Event
|
|
{
|
|
public:
|
|
MouseClickEvent(int button)
|
|
: Event(), m_button(button) {
|
|
}
|
|
|
|
std::string ToString() const override { return "MouseClickEvent"; }
|
|
|
|
int m_button;
|
|
};
|
|
} |