mirror of
https://github.com/ApfelTeeSaft/WV-Core.git
synced 2026-09-02 19:24:11 +00:00
14 lines
252 B
C++
14 lines
252 B
C++
#pragma once
|
|
|
|
#include <wv/events/Event.h>
|
|
|
|
namespace WillowVox
|
|
{
|
|
class WindowCloseEvent : public Event
|
|
{
|
|
public:
|
|
WindowCloseEvent() : Event() {}
|
|
|
|
std::string ToString() const override { return "WindowCloseEvent"; }
|
|
};
|
|
} |