Files
Mikaël Capelle 71dbb8c557 Refactoring of game features for better management. (#149)
* Refactoring following uibase change for game features.
* Switch to ruff for linting and formatting.
* Bump stubs to 2.5.1a0.
2024-06-09 12:25:46 +02:00

35 lines
905 B
Python

# -*- encoding: utf-8 -*-
import mobase
from PyQt6.QtCore import QFileInfo
from ..basic_game import BasicGame
class TDU2Game(BasicGame):
Name = "Test Drive Unlimited 2 Support Plugin"
Author = "uwx"
Version = "1.0.0"
GameName = "Test Drive Unlimited 2"
GameShortName = "tdu2"
GameNexusName = "testdriveunlimited2"
GameNexusId = 2353
GameSteamId = 9930
GameBinary = "UpLauncher.exe"
GameDataPath = ""
def executables(self):
return [
mobase.ExecutableInfo(
"Test Drive Unlimited 2",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
),
mobase.ExecutableInfo(
"TDU2 Universal Launcher",
QFileInfo(
self.gameDirectory().absoluteFilePath("TDU2_Universal_Launcher.exe")
),
),
]