mirror of
https://github.com/ModOrganizer2/modorganizer-basic_games.git
synced 2026-07-27 14:07:29 -07:00
20 lines
493 B
Python
20 lines
493 B
Python
from ..basic_game import BasicGame
|
|
|
|
|
|
class AssettoCorsaGame(BasicGame):
|
|
|
|
Name = "Assetto Corsa Support Plugin"
|
|
Author = "Deorder"
|
|
Version = "0.0.1"
|
|
|
|
GameName = "Assetto Corsa"
|
|
GameShortName = "ac"
|
|
GameBinary = r"AssettoCorsa.exe"
|
|
GameDataPath = r""
|
|
GameSteamId = 244210
|
|
GameDocumentsDirectory = "%DOCUMENTS%/Assetto Corsa"
|
|
GameSupportURL = (
|
|
r"https://github.com/ModOrganizer2/modorganizer-basic_games/wiki/"
|
|
"Game:-Assetto-Corsa"
|
|
)
|