Files
FlaxEngine/Source/Engine/Platform/SDL/SDLInput.h
2025-07-03 22:02:36 +03:00

23 lines
363 B
C++

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