#pragma once struct input_state { bool window_closed; bool escape; bool left; bool right; bool up; bool down; }; void inputProcessEvents(input_state* is);