You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
455 B
Batchfile
25 lines
455 B
Batchfile
|
|
@Rem Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
@echo off
|
||
|
|
|
||
|
|
@Rem Set script directory as working directory.
|
||
|
|
pushd "%~dp0"
|
||
|
|
|
||
|
|
title Matchmaker
|
||
|
|
|
||
|
|
@Rem Run setup to ensure we have node and matchmaker installed.
|
||
|
|
call setup.bat
|
||
|
|
|
||
|
|
@Rem Move to matchmaker.js directory.
|
||
|
|
pushd ..\..
|
||
|
|
|
||
|
|
@Rem Run node server and pass any argument along.
|
||
|
|
platform_scripts\cmd\node\node.exe matchmaker %*
|
||
|
|
|
||
|
|
@Rem Pop matchmaker.js directory.
|
||
|
|
popd
|
||
|
|
|
||
|
|
@Rem Pop script directory.
|
||
|
|
popd
|
||
|
|
|
||
|
|
pause
|