tek/input
2025-01-09 22:28:23 +01:00
..
src what is up with those tests! 2025-01-09 22:28:23 +01:00
Cargo.lock refactor engine and layout into input and output 2025-01-07 21:30:07 +01:00
Cargo.toml refactor engine and layout into input and output 2025-01-07 21:30:07 +01:00
README.md move edn_view into layout 2025-01-07 21:41:51 +01:00

tek_engine

rendering

input handling

the input thread polls for keyboard events and passes them onto the application's Handle::handle method.

thus, for a type to be a valid application for engine E, it must implement the trait Handle<E>, which allows it to respond to user input.

this thread has write access to the application state, and is responsible for mutating it in response to user activity.