diff options
Diffstat (limited to 'Northstar.Coop/mod.json')
-rw-r--r-- | Northstar.Coop/mod.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Northstar.Coop/mod.json b/Northstar.Coop/mod.json new file mode 100644 index 00000000..b4dfaeb2 --- /dev/null +++ b/Northstar.Coop/mod.json @@ -0,0 +1,25 @@ +{ + "Name" : "Northstar.Coop", + "Description" : "Allows the singleplayer campaign to be played in multiplayer", + + "LoadPriority": 0, + + "Scripts": [ + { + "Path": "sh_sp_coop.gnut", + "RunOn": "SP" + }, + + { + "Path": "sh_sp_coop_lobby.gnut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "After": "SingleplayerCoopLobby_Init" + }, + + "ServerCallback": { + "After": "SingleplayerCoopLobby_Init" + } + }, + ], +}
\ No newline at end of file |