chaos/game.sh
creativenothing 0c6e078a37 first commit
2022-08-14 18:23:24 +00:00

19 lines
166 B
Bash
Executable File

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