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

18 lines
211 B
C++

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