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) {