Files
Copium/CopiumEngine/src/copium/event/WindowResizeEvent.h
T
2026-01-28 23:04:31 +01:00

20 lines
271 B
C++

#pragma once
#include "copium/event/Event.h"
namespace Copium
{
class WindowResizeEvent : public Event
{
private:
int width;
int height;
public:
WindowResizeEvent(int width, int height);
int GetWidth() const;
int GetHeight() const;
};
}