add No Man's Sky

This commit is contained in:
Luca|EzioTheDeadPoet
2020-12-29 22:20:54 +01:00
parent d31ff4d5d0
commit 7a4b7935e8
+26
View File
@@ -0,0 +1,26 @@
# -*- encoding: utf-8 -*-
from ..basic_game import BasicGame
class NoMansSkyGame(BasicGame):
Name = "Mo Man's Sky Support Plugin"
Author = "Luca/EzioTheDeadPoet"
Version = "1.0.0"
GameName = "Mo Man's Sky"
GameShortName = "nomanssky"
GaneNexusHame = "nomanssky"
GameSteamId = 275850
GameGogId = 1446213994
GameBinary = "Binaries/NMS.exe"
GameDataPath = "GAMEDATA/PCBANKS/MODS"
def executables(self):
return [
mobase.ExecutableInfo(
"No Man's Sky",
QFileInfo(self.gameDirectory(), "Binaries/NMS.exe"),
),
]