mirror of
https://github.com/ApfelTeeSaft/WV-Core.git
synced 2026-08-27 03:53:28 +00:00
18 lines
387 B
C++
18 lines
387 B
C++
#pragma once
|
|
|
|
#include <wv/events/Event.h>
|
|
|
|
namespace WillowVox
|
|
{
|
|
class WindowResizeEvent : public Event
|
|
{
|
|
public:
|
|
WindowResizeEvent(int newWidth, int newHeight)
|
|
: Event(), m_newWidth(newWidth), m_newHeight(newHeight) {
|
|
}
|
|
|
|
std::string ToString() const override { return "WindowResizeEvent"; }
|
|
|
|
int m_newWidth, m_newHeight;
|
|
};
|
|
} |