19 lines
166 B
Bash
Executable File
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
|