Auto stash before merge of "feature/terminal-game-engine" and "origin/feature/terminal-game-engine"

This commit is contained in:
Dan 2026-01-19 16:25:22 +00:00
parent 8fa11c4f00
commit 901f3e5cdc
3 changed files with 24 additions and 6 deletions

View file

@ -75,6 +75,11 @@ class SceneManager {
await this._renderContent(scene.content);
}
// Execute onAfterRender actions (after content, before options)
if (scene.onAfterRender) {
await this._executeActions(scene.onAfterRender);
}
// Handle navigation
if (scene.options) {
await this._handleOptions(scene);