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