Implement stepping via KEY_SPACE

This commit is contained in:
2025-12-12 04:09:50 +00:00
parent 424fab2e40
commit 9d3a202c27

View File

@@ -152,6 +152,11 @@ int main(void)
format_str_width = MeasureText(format_str.c_str(), FONT_SIZE * 2);
}
if (IsKeyPressed(KEY_SPACE))
{
state.pause_work = !state.pause_work;
}
// Draw
ClearBackground(BLACK);