mirror of
https://github.com/lutris/lutris
synced 2024-11-02 08:20:51 +00:00
13 lines
401 B
Text
13 lines
401 B
Text
Creating a runner module:
|
|
|
|
|
|
def __init__(self,settings=None):
|
|
self.executable = "name of the executable"
|
|
self.package = "Debian package"
|
|
self.description = "Short description of the capabilities of the runner"
|
|
self.machine = "Which machine does this runner runs ?"
|
|
|
|
def play(self)
|
|
return [self.executable,"command","line","with","arguments"]
|
|
|
|
|