feat: adding modal animations

This commit is contained in:
Chubby Granny Chaser 2024-06-08 18:58:23 +01:00
commit 80a25bf409
No known key found for this signature in database
14 changed files with 270 additions and 208 deletions

View file

@ -13,10 +13,13 @@ const createGameShortcut = async (
if (game) {
const filePath = game.executablePath;
const options = { filePath, name: game.title };
return createDesktopShortcut({
windows: { filePath },
linux: { filePath },
osx: { filePath },
windows: options,
linux: options,
osx: options,
});
}