// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. #pragma once #if PLATFORM_SDL class SDLWindow; union SDL_Event; /// /// SDL specific implementation of the input system parts. /// class SDLInput { public: static void Init(); static void Update(); static bool HandleEvent(SDLWindow* window, SDL_Event& event); }; #endif