From f0faa92246c1f5fc58546051ace2d047869447df Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Thu, 1 May 2025 22:38:12 +0530 Subject: Refactor events into separate files --- spec/LuaRuntimeApiSpec.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/LuaRuntimeApiSpec.cpp') diff --git a/spec/LuaRuntimeApiSpec.cpp b/spec/LuaRuntimeApiSpec.cpp index c340a03..fe29fcc 100644 --- a/spec/LuaRuntimeApiSpec.cpp +++ b/spec/LuaRuntimeApiSpec.cpp @@ -3,10 +3,10 @@ #include "LuaRuntime.hpp" #include "WindowActionRouter.hpp" -#include "events.hpp" +#include "events/Event.hpp" #include "testUtils.h" -class TestEvent1 : public BrowserEvent { +class TestEvent1 : public Event { public: int num; TestEvent1(int num) : num(num) { kind = "TestEvent1"; } -- cgit v1.3.1