mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-05 03:29:45 -04:00
14 lines
275 B
C++
14 lines
275 B
C++
#pragma once
|
|
|
|
union SDL_Event;
|
|
|
|
namespace dusk::ui::input {
|
|
|
|
void handle_event(const SDL_Event& event) noexcept;
|
|
void update_input() noexcept;
|
|
void reset_input_state() noexcept;
|
|
void sync_input_block() noexcept;
|
|
void release_input_block() noexcept;
|
|
|
|
} // namespace dusk::ui
|