removed todo comment from window class

This commit is contained in:
2026-04-09 22:04:31 +02:00
parent 60f6c9281b
commit b98f46f425

View File

@@ -37,10 +37,6 @@ void Window::Create() {
} }
} }
// TODO: add the window callbacks here as seperate functions because sdl functions that way
// each of them will get a function which will receive a window event filled in with the window's data (id (i guess))
// and then they will dispatch it to the event system using the same raise event
void Window::ProcessEvent(const SDL_Event &event) { void Window::ProcessEvent(const SDL_Event &event) {
switch (event.type) { switch (event.type) {
case SDL_EVENT_WINDOW_CLOSE_REQUESTED: { case SDL_EVENT_WINDOW_CLOSE_REQUESTED: {