Created
February 21, 2021 22:59
-
-
Save PizzaConsole/747b1de50cca4a89a384c3d7890d7dcb to your computer and use it in GitHub Desktop.
Bat file to run Godot dedicated server game
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo OFF | |
cd Game.Auth | |
echo starting auth server | |
start godot -d --no-window | |
cd .. | |
cd Game.Gateway | |
echo starting gateway | |
start godot -d --no-window | |
cd .. | |
cd Game.Server | |
echo starting game server | |
start godot -d --no-window | |
cd .. | |
cd Game.Client | |
echo starting game client | |
start godot -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment