From f4dd85ddc229be2b71b071dde1a7ee67877e30b5 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 15 Feb 2026 12:50:16 +0100 Subject: [PATCH] test: check if `WaylandInputHandler` works --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 415bc87..41f61ec 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,6 @@ #include +#include "input/wayland.h" #include "window.h" #include "renderer.h" @@ -9,6 +10,7 @@ static Window window(720, 480); void HandleFrame() { printf("[APP]: width = %zu, height = %zu\n", window.GetWidth(), window.GetHeight()); + WaylandInputHandler::GetInstance(); } int main(int argc, char **argv) {