chaos/game.sh
creativenothing 71d357c6ea prettier
2022-08-15 03:40:58 +00:00

19 lines
191 B
Bash
Executable File

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