Added
- Added text input support to
tcod.sdl.video.Window
which was missing since the SDL3 update.
After creating a context useassert context.sdl_window
orif context.sdl_window:
to verify that an SDL window exists then usecontext.sdl_window.start_text_input
to enable text input events.
Keep in mind that this can open an on-screen keyboard.