Begin Repo

This commit is contained in:
2024-08-10 21:20:28 -05:00
commit 08115f90ce
41 changed files with 19581 additions and 0 deletions

10
events/keyEvent.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "keyEvent.h"
KeyEvent::KeyEvent(int k, int s, int m, int r, bool p) : key(k), scancode(s), mod(m), repeat(r), pressed(p) {
}
KeyTypedEvent::KeyTypedEvent(int w, char* t) : windowID(w), text(t)
{
}