Christmas Dash added.

This commit is contained in:
Storm Dragon
2025-12-22 17:57:52 -05:00
parent be86f1e916
commit 5f1fc591f9
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
gameDir="${installPath}/christmas_dash_linux"
gameExecutable="${gameDir}/game.bin"
if [[ ! -d "$gameDir" ]]; then
ui_msgbox "Linux Game Manager" "Linux Game Manager" "Christmas Dash is not installed."
return 1
fi
if [[ ! -x "$gameExecutable" ]]; then
ui_msgbox "Linux Game Manager" "Linux Game Manager" "Unable to find ${gameExecutable}."
return 1
fi
pushd "${gameDir}"
"${gameExecutable}"