forked from ModOrganizer2/modorganizer-basic_games
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgame_nfshs.py
More file actions
27 lines (21 loc) · 668 Bytes
/
game_nfshs.py
File metadata and controls
27 lines (21 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
import mobase
from PyQt6.QtCore import QFileInfo
from ..basic_game import BasicGame
class NFSHSGame(BasicGame):
Name = "Need for Speed: High Stakes Support Plugin"
Author = "uwx"
Version = "1.0.0"
GameName = "Need for Speed: High Stakes"
GameShortName = "nfshs"
GameNexusName = "needforspeedhighstakes"
GameNexusId = 6032
GameBinary = "nfshs.exe"
GameDataPath = ""
def executables(self):
return [
mobase.ExecutableInfo(
"Need for Speed: High Stakes",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
)
]