chaos/game
2025-06-23 23:24:43 -04:00

19 lines
204 B
Bash
Executable File

#!/bin/bash
source 'utils/menu'
run_game() {
if [[ $# -eq 0 ]]; then
bash 'utils/intro'
sleep 1
menu 'actions/start'
else
menu 'actions/$1'
fi
}
run_game